:root {
    --primary-color: #16a34a;
    /* Vibrant Green */
    --secondary-color: #FFFFFF;
    /* White */
    --accent-color: #f0fdf4;
    /* Light Green for backgrounds */
    --text-dark: #333333;
    --text-light: #ffffff;
    --gradient-overlay: linear-gradient(135deg, rgba(22, 163, 74, 0.9), rgba(21, 128, 61, 0.8));
    --buttons-text-color: #16a34a;
    /* Text color for buttons on white/secondary bg */
    --card-shadow: 0 10px 30px rgba(22, 163, 74, 0.1);
    --transition-speed: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

/* Header */
header {
    background-color: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 60px;
    /* Adjust based on logo aspect ratio */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

nav a:hover::after {
    width: 100%;
}

.cta-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--gradient-overlay), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-content span.highlight {
    color: var(--secondary-color);
}

/* Services / Pricing */
.pricing {
    padding: 5rem 5%;
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.pricing h2::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 25%;
}

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

.pricing-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-speed);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-color);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card img {
    height: 100px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.price {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin: 1rem 0;
}

.price small {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.features li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* How It Works */
.steps-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 5rem 5%;
    text-align: center;
}

.steps-section h2 {
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.steps-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 250px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Footer / Contact */
footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    font-size: 1.5rem;
    margin: 2rem 0;
}

.contact-info a {
    color: var(--secondary-color);
}

.social-links {
    margin-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}