:root {
	--greens-color: #2d8659;
	--greens-light: #E8F5ED;
}

* { 
	margin: 0; 
	padding: 0; 
	box-sizing: border-box; 
}

body {
	font-family: Verdana, Arial, sans-serif;
	padding: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	color: #000;
	background-color: var(--greens-light);
}

h1, h2 {
	font-family: Verdana, Arial, sans-serif;
	color: var(--greens-color);
}

h1 {
	margin-bottom: 2rem;
	font-size: 2rem;
	font-weight: bold;
}

h2 {
	margin-bottom: 1.5rem;
	font-weight: bold;
}

.instructions {
	background: var(--greens-light);
	padding: 1.5rem;
	border-radius: 8px;
	margin-bottom: 2rem;
}

.instructions h2 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: var(--greens-color);
}

.instructions ol {
	margin-left: 1.5rem;
	line-height: 1.8;
}

.instructions li {
	font-size: 0.8rem;
	margin-bottom: 0.5rem;
	color: #444;
}

.container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.form-section {
	padding: 2rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(45, 134, 89, 0.1);
}

.preview-section {
	padding: 2rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(45, 134, 89, 0.1);
}

.preview-actions {
	margin-top: 2rem;
	display: flex;
	gap: 1rem;
}

.action-button {
	padding: 0.875rem 2rem;
	background: var(--greens-color);
	color: white;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-family: Verdana, Arial, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	transition: all 0.2s ease;
	flex: 1;
	text-align: center;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.action-button:hover {
	background: #256b4a;
	transform: translateY(-1px);
}

.action-button.secondary {
	background: white;
	border: 2px solid var(--greens-color);
	color: var(--greens-color);
}

.action-button.secondary:hover {
	background: var(--greens-light);
}

.copy-success {
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	background: #10B981;
	color: white;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-size: 0.9rem;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: 1000;
}

.copy-success.show {
	opacity: 1;
}

#html-copy-success {
	bottom: 5.5rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

label {
	display: block;
	margin-bottom: 0.5rem;
	color: #444;
	font-weight: 500;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
	width: 100%;
	padding: 0.75rem;
	font-family: Verdana, Arial, sans-serif;
	border: 2px solid #E5E7EB;
	border-radius: 8px;
	transition: all 0.2s ease;
	font-size: 0.95rem;
	resize: vertical;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
	outline: none;
	border-color: var(--greens-color);
	box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.1);
}

input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
	color: #9CA3AF;
}

.color-options {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.color-option {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.2s ease;
	position: relative;
}

.color-option:hover {
	transform: scale(1.05);
}

.color-option.selected {
	border-color: #333;
	transform: scale(1.05);
}

.color-option[data-color="purple"] {
	background-color: var(--magma-purple);
}

.color-option[data-color="teal"] {
	background-color: var(--magma-teal);
}

.logo-header {
	text-align: center;
	margin-bottom: 2rem;
}

.logo-header img {
	width: 200px;
	height: auto;
}

.additional-info {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 2px solid var(--magma-light-purple);
}

.additional-info-toggle {
	background: none;
	border: 2px solid var(--magma-purple);
	color: var(--magma-purple);
	font-family: Verdana, Arial, sans-serif;
	font-size: 1rem;
	padding: 0.75rem 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
	border-radius: 8px;
	font-weight: 500;
	transition: all 0.2s ease;
}

.additional-info-toggle:hover {
	background: var(--magma-light-purple);
}

.additional-info-toggle::after {
	content: '▼';
	font-size: 0.8rem;
	transition: transform 0.3s;
}

.additional-info-toggle.active {
	background: var(--magma-light-purple);
}

.additional-info-toggle.active::after {
	transform: rotate(180deg);
}

.additional-info-content {
	display: none;
	padding-top: 1.5rem;
}

.additional-info-content.active {
	display: block;
}

@media (max-width: 768px) {
	.container {
		grid-template-columns: 1fr;
	}

	body {
		padding: 1rem;
	}

	.preview-actions {
		flex-direction: column;
	}
}


.form-group input[type="submit"] {
	padding: 0.875rem 2rem;
	background: var(--greens-color);
	color: white;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-family: Verdana, Arial, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	transition: all 0.2s ease;
	width: 100%;
	display: inline-block;
	-webkit-appearance: none;
	appearance: none;
}

.form-group input[type="submit"]:hover {
	background: #256b4a;
	transform: translateY(-1px);
}