:root {
    --primary-color: #4A9E44;
    --primary-hover: #3d8338;
    --secondary-color: #30302F;
    --text-color: #1f2937;
    --background-color: #ffffff;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.125rem;
    text-decoration: none;
    transition: color 0.2s;
}

.logo:hover {
    color: var(--primary-hover);
}

/* Hero Banner */
.hero-banner {
    background-color: var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
    text-align: center;
}

.hero-banner h1 {
    color: white;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem 0 3rem;
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

/* Form Styles */
.form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    order: -1;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.form-subtitle {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.375rem;
    color: var(--secondary-color);
}

input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 0.975rem;
    transition: all 0.2s;
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(74, 158, 68, 0.1);
}

button {
    width: 100%;
    padding: 0.875rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

button:hover {
    background-color: var(--primary-hover);
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Benefits List */
.benefits-list {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    font-weight: 400;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item svg {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Contact Info */
.contact-info {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 0.975rem;
}

.info-item svg {
    color: var(--primary-color);
    width: 18px;
    height: 18px;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    font-size: 0.875rem;
}

.toast.success {
    background-color: var(--primary-color);
    color: white;
}

.toast.error {
    background-color: #ef4444;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 1.5rem;
    }

    .form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-banner h1 {
        font-size: 1.25rem;
    }

    .container {
        padding: 0 1rem;
    }
}
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.toast.show {
    display: block;
    opacity: 1;
}
