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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #2c5530;
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
}

.hero {
    background: linear-gradient(135deg, #3a6b3e 0%, #2c5530 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location {
    font-size: 1.25rem;
    opacity: 0.95;
}

.benefits {
    padding: 4rem 0;
    background-color: white;
}

.benefits h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2c5530;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: #e8f4e9;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.benefit-icon svg {
    color: #3a6b3e;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.benefit h3 {
    color: #2c5530;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.benefit p {
    color: #666;
    text-align: center;
}

.pricing {
    padding: 4rem 0;
    background-color: white;
}

.pricing h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.unit-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.unit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.unit-card.popular {
    border-color: #3a6b3e;
    box-shadow: 0 5px 20px rgba(58, 107, 62, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #3a6b3e;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.unit-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.unit-icon svg {
    color: #3a6b3e;
    width: 48px;
    height: 48px;
    stroke: #3a6b3e;
}

.unit-card:hover .unit-icon svg {
    color: #2c5530;
    stroke: #2c5530;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.unit-card h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.unit-subtitle {
    color: #666;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 1rem;
    font-style: italic;
}

.unit-specs {
    background-color: white;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.unit-specs p {
    margin: 0.25rem 0;
}

.size {
    font-weight: 600;
    color: #333;
}

.volume {
    color: #666;
    font-size: 0.9rem;
}

.price {
    font-size: 1.5rem;
    color: #3a6b3e;
    font-weight: 700;
    margin-top: 0.5rem;
}

.description {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.fits h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.fits ul {
    list-style: none;
    padding: 0;
}

.fits li {
    color: #666;
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.fits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3a6b3e;
    font-weight: bold;
}

.pricing-notes {
    background-color: #e8f4e9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.pricing-notes p {
    margin: 0.5rem 0;
    color: #2c5530;
}

.cta {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.cta h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.cta > .container > p {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #3a6b3e;
}

button[type="submit"] {
    background-color: #3a6b3e;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #2c5530;
}

footer {
    background-color: #2c5530;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .units-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.checkbox-label:hover {
    color: #3a6b3e;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: #3a6b3e;
    transform: scale(1.2);
}

.checkbox-label span {
    font-size: 1rem;
    color: #333;
}

.checkbox-label:hover span {
    color: #3a6b3e;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .location {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    form {
        padding: 1.5rem;
    }
    
    .units-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .unit-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 1.25rem;
    }
}