header {
    background: #121518;
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}


.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #aa9166;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #121518;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 15px 0;
        border-top: 1px solid #222;
    }
}




.about {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-image {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    max-width: 500px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1 1 45%;
    min-width: 300px;
    padding: 10px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #121518;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 15px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 14px;
    }
}

.page-header h2 {
    margin: 0;
    font-size: 2em;
    color: black;
    margin-bottom: 15px;
}

.page-header a {
    color: black;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1em;
}