/* Modern color scheme: earthy tones with vibrant accents */
:root {
    --primary: #3A5A40;
    --secondary: #588157;
    --accent: #DDA15E;
    --light: #FEFAE0;
    --dark: #283618;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Base reset and typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--light);
    padding: 0;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header styles */
header {
    background-color: var(--primary);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Main content styles */
h2 {
    font-size: 2rem;
    color: var(--dark);
    margin: 2rem 0 1rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 1.5rem 0 1rem;
}

.intro {
    text-align: center;
    padding: 2rem 0;
}

.image-wrapper {
    margin: 2rem auto;
    max-width: 800px;
    border: 8px solid white;
    box-shadow: var(--shadow);
    border-radius: 4px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services section */
.services {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 2rem 0;
}

.services ul {
    list-style-position: inside;
    margin: 1rem 0;
}

.services li {
    margin-bottom: 0.5rem;
}

/* Benefits section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Button styles */
.cta-button, .cta-button-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.cta-button {
    background-color: var(--accent);
    color: var(--dark);
    font-size: 1.1rem;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #e6a05a;
    transform: translateY(-2px);
}

.cta-button-secondary {
    background-color: var(--secondary);
    color: white;
}

.cta-button-secondary:hover {
    background-color: #4a6d4a;
}

/* Footer styles */
footer {
    background-color: var(--dark);
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .container {
        width: 95%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .cta-button, .cta-button-secondary {
        display: block;
        text-align: center;
    }
}