body {
    margin: 0;
    font-family: "Times New Roman", serif;
    background: #f3f5f7;
    color: #111;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 50px;
    background: #ffffff;
    border-bottom: 1px solid #e6e6e6;
}

.logo img {
    height: 45px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #111;
    font-size: 15px;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero */
.hero {
    text-align: center;
    padding: 70px 20px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e6e6e6;
}

/* HERO IMAGE FIX */
.hero-img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 25px;
}

/* Hero Text */
.hero h1 {
    font-size: 40px;
    margin-bottom: 12px;
}

.hero p {
    font-size: 18px;
    color: #444;
    max-width: 700px;
    margin: auto;
}

/* Sections */
.section {
    max-width: 950px;
    margin: 30px auto;
    padding: 25px 30px;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #eaeaea;
}

/* Section Heading */
.section h2 {
    margin-bottom: 12px;
    font-size: 24px;
}

/* Section List */
.section ul {
    padding-left: 18px;
}

.section li {
    margin-bottom: 8px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-top: 1px solid #e6e6e6;
    margin-top: 40px;
    font-size: 14px;
    color: #555;
}

/* ------------- Mobile fix ------------ */

* {
    box-sizing: border-box;
}

@media (max-width: 768px) {

    /* Header becomes vertical */
    header {
        flex-direction: column;
        padding: 15px 20px;
    }

    /* Navigation stacks */
    nav {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    nav a {
        margin: 8px 0;
        font-size: 16px;
    }

    /* Hero text scaling */
    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 15px;
        padding: 0 10px;
    }

    /* Sections padding fix */
    .section {
        margin: 20px 15px;
        padding: 20px;
    }

    /* Section heading smaller */
    .section h2 {
        font-size: 20px;
    }
}

/* Hide hamburger on desktop */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    nav.active {
        display: flex;
    }

    nav a {
        margin: 10px 0;
        font-size: 16px;
    }
}
