@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    position: fixed;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: end;
    text-decoration: none;
}

.logo a img {
    width: 70px;
    margin: 10px 0;
}

.logo a h3 {
    padding: 5px 10px;
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.3);
    font-weight: 900;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: #333;
    text-decoration: none;
}

nav a:hover {
    color: #D7B468;
}

.menu-toggle {
    display: none;
}

/* Header Section */

section {
    padding: 50px 0;
    top: 0;
}

#header {
    background-color: #f4f9ff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content img {
    position: relative;
    max-width: 50%;
    bottom: -50px;
}

.header-text {
    display: flex;
    flex-direction: column;
    max-width: 50%;
    gap: 50px;
}

h1 {
    font-size: 2rem;
    color: #D7B468;
}

.header-text p {
    font-size: 1.2rem;
    color: #333;
}

p span {
    color: #D7B468;
    font-weight: bold;
}

.product-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 50px;
    background: #f4f9ff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.card img {
    max-width: 50%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
    float: left;
}

/* Footer Section */

footer {
    text-align: center;
    padding: 20px;
    background-color: #f4f9ff;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }

    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 5%;
        width: 200px;
        padding: 10px;
        border-radius: 5px;
        background: rgba(0, 0, 0, 0.7);
        gap: 30px;
        z-index: 999;
    }

    nav a {
        color: #fff;
        ;
    }

    .header-content {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }

    .header-text {
        max-width: 100%;
        padding-top: 100px;
    }

    .header-content img {
        max-width: 100%;
        display: block;
    }

    .menu-toggle {
        display: inline-block;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .menu-toggle:hover {
        color: #D7B468;
    }

    .show-menu {
        display: flex;
    }

    .card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .card img {
        max-width: 100%;
    }
}