:root {
    --bg-main: #ffffff;
    --bg-alt: #fcfbf9;
    --bg-components: #f4f3ed;
    --text-main: #2b3320;
    --text-muted: #5e6b4d;
    --primary-color: #4a5d45;
    /* Dark olive green from screenshot */
    --primary-hover: #3a4a35;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --hero-bg: url('hero.png');
    --card1-bg: url('card1.png');
    --card2-bg: url('card2.png');
    --card3-bg: url('card3.png');
    --footer-bg: url('footer.png');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center {
    text-align: center;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 400;
}

/* Utility Bar */
.utility-bar {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 10px 0;
    font-weight: 500;
}

/* Navbar */
.navbar {
    padding: 2rem 0;
    background-color: var(--bg-main);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 65vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--hero-bg);
    background-size: cover;
    background-position: center;
    margin-bottom: 5rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    color: #fff;
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero p {
    color: #fff;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Is Right Section */
.is-right {
    padding: 4rem 0 6rem;
    text-align: center;
}

.is-right h2 {
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
}

.checklist {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.check-item {
    background-color: var(--bg-components);
    padding: 2.5rem 2rem;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.checkmark {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.check-item p {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
}

.bold-statement {
    font-size: 1rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-main);
}

/* Start Here Cards */
.start-here {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.card {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.card-img {
    height: 260px;
    background-size: cover;
    background-position: center;
}

#img-card1 {
    background-image: var(--card1-bg);
}

#img-card2 {
    background-image: var(--card2-bg);
}

#img-card3 {
    background-image: var(--card3-bg);
}

.card-body {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.card-body h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--text-main);
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex: 1;
}

.btn-read {
    text-decoration: none;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 35px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin: 0 auto;
    border-radius: 2px;
}

.btn-read:hover {
    background-color: var(--primary-hover);
}

/* Footer Section */
.footer {
    background-color: #2d4a2f;
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-heading {
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c8763a;
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-layout {
        flex-direction: column;
        gap: 20px;
    }

    .utility-bar {
        padding: 10px 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .is-right h2,
    .section-header h2 {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
}