:root {
    --dark-green: #0b1a1a;
    --lime-accent: #ccff00;
    --text-grey: #a0a0a0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    padding: 20px; /* Creates the white border around the dark section */
}

/* Container for the dark section */
.hero-wrapper {
    background-color: var(--dark-green);
    border-radius: 40px;
    color: white;
    padding: 40px 60px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
}

.logo { font-weight: 900; font-size: 24px; letter-spacing: 1px; }

.nav-links { display: flex; list-style: none; gap: 30px; }

.nav-links a { color: #ccc; text-decoration: none; font-size: 14px; }

.btn-nav {
    background: white;
    color: black;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Content */
.hero-content { text-align: center; max-width: 900px; margin: 0 auto; }

.hero-content h1 {
    font-size: 85px;
    font-weight: 900;
    line-height: 0.9;
    margin: 30px 0;
}

.hero-content .highlight { color: var(--lime-accent); }

.hero-content p {
    color: var(--text-grey);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Search Bar Pill */
.search-pill {
    background: white;
    padding: 8px;
    border-radius: 50px;
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-pill input {
    flex: 1;
    border: none;
    padding-left: 25px;
    font-size: 16px;
    outline: none;
}

.search-pill button {
    background: var(--dark-green);
    color: var(--lime-accent);
    border: none;
    padding: 15px 35px;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Pricing Grid */
.pricing-section {
    padding: 100px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.price-card.dark { background: var(--dark-green); color: white; }

/* Contact/About Content */
.page-content { padding: 100px 10%; text-align: center; }

footer { text-align: center; padding: 40px; color: #888; }


