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

body {
    background-color: #f5f5f5;
    color: #222;
    font-size: 16px;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #2d2d2d;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 10px;
}

.nav-links li {
    margin: 0 18px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links li a:hover,
.nav-links li a:focus {
    color: #b98046;
    outline: none;
}

.nav-icons {
    display: flex;
    align-items: center;
}

.nav-icons a {
    margin-left: 18px;
    color: #333;
    font-size: 22px;
    transition: color 0.2s;
}

.nav-icons a:hover,
.nav-icons a:focus {
    color: #b98046;
    outline: none;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 60px 40px 60px;
    background: linear-gradient(90deg, #fff 60%, #f7e9d2 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(185,128,70,0.07);
    margin: 40px auto 0 auto;
    max-width: 1200px;
}

.text {
    max-width: 52%;
}

.text h4 {
    font-size: 15px;
    color: #b98046;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.text h1 {
    font-size: 48px;
    margin: 18px 0 18px 0;
    color: #222;
    font-weight: 800;
    line-height: 1.15;
}

.text h1 i {
    color: #b98046;
    font-style: normal;
    font-weight: 900;
}

.text p {
    font-size: 19px;
    color: #555;
    margin-bottom: 24px;
}

.buttons {
    margin-top: 18px;
    display: flex;
    gap: 14px;
}

.buttons button {
    padding: 12px 28px;
    font-size: 17px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 0;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(185,128,70,0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.explore {
    background-color: #b98046;
    color: #fff;
    border: 1.5px solid #b98046;
}

.explore:hover,
.explore:focus {
    background-color: #a06a3a;
    border-color: #a06a3a;
    color: #fff;
    outline: none;
}

.learn {
    background-color: #fff;
    color: #b98046;
    border: 1.5px solid #b98046;
}

.learn:hover,
.learn:focus {
    background-color: #f7e9d2;
    color: #a06a3a;
    outline: none;
}

.image img {
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(185,128,70,0.10);
    background: #fff;
    padding: 12px;
}

/* Hamburger icon styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 20;
}

.hamburger span {
    height: 4px;
    width: 100%;
    background: #b98046;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
    display: block;
}

/* Dropdown menu styles for mobile */
@media (max-width: 700px) {
    header {
        flex-direction: column;
        padding: 14px 10px;
    }

    .logo {
        margin-bottom: 12px;
        font-size: 22px;
        text-align: center;
        width: 100%;
    }

    nav {
        flex-direction: column;
        align-items: stretch;
        position: relative;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 16px;
        top: 18px;
    }

    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 8px 24px rgba(185,128,70,0.07);
        gap: 0;
        align-items: center;
        margin-bottom: 0;
        padding: 16px 0;
        display: none;
        transition: max-height 0.3s ease;
        z-index: 15;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-icons {
        margin-top: 8px;
        justify-content: center;
        width: 100%;
    }
}

/* Hamburger animation for open state (optional) */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}