*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.main-content {
    flex: 1;
    padding: 2rem;
    text-align: center;
}

/* Header Styles */
.header {
    width: 100%;
    background-color: #f5f5f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem 0.4rem;
}

/* Updated logo size */
.nav__logo .logo__img {
    height: 100px;
   
}

.nav__menu {
    display: flex;
    gap: 2rem;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav__item {
    position: relative;
    font-size: 1rem;
}

.nav__link {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown__icon {
    font-size: 0.8rem;
}

.dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    min-width: 150px;
    flex-direction: column;
    list-style: none;
}

.dropdown__link {
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    display: block;
}

.dropdown__link:hover {
    background-color: #f0f0f0;
}

.nav__item:hover .dropdown__menu {
    display: flex;
}

/* Mobile Menu Styles */
.nav__toggle {
    display: none;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__actions i {
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background-color: #f5f5f5;
        padding-top: 4rem;
        flex-direction: column;
        gap: 2rem;
        transition: top 0.3s ease;
    }

    .show-menu {
        top: 0;
    }

    .nav__toggle {
        display: inline-block;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .dropdown__menu {
        position: static;
        box-shadow: none;
    }
}

/* Footer Styles */
.footer {
    background-color: #333;
    color: #fff;
    padding: 0.5rem 0;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer__logo-section {
    max-width: 150px;
    text-align: center;
}

.footer__logo {
    height: 100px;
    margin-bottom: 0.3rem;
}

.footer__address {
    line-height: 1.2;
    font-size: 0.7rem;
    color: #bbb;
}

.footer__social-media {
    text-align: center;
}

.footer__social-media h3 {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    color: #fff;
}

.footer__social-link {
    color: #fff;
    font-size: 1rem;
    margin: 0 0.6rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer__social-link:hover {
    color: #ffd700;
    transform: scale(1.05);
}

.footer__links {
    text-align: center;
}

.footer__links h3 {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    color: #fff;
}

.footer__links ul {
    list-style: none;
    padding: 0;
}

.footer__links ul li {
    margin-bottom: 0.2rem;
}

.footer__links ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.3s ease;
}

.footer__links ul li a:hover {
    color: #ffd700;
}

.footer__bottom {
    text-align: center;
    background-color: #222;
    padding: 0.3rem 0;
    font-size: 0.7rem;
    color: #bbb;
    margin-top: 0.5rem;
}

/* Mobile Menu Styles */
@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #f5f5f5;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 3rem;
        transition: left 0.3s ease;
    }

    .show-menu {
        left: 0;
    }

    .nav__toggle {
        display: block;
        font-size: 1.5rem;
        color: #333;
        margin-right: 1rem;
    }

    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* Menu Item Styles */
    .nav__list {
        flex-direction: column;
        width: 100%;
        padding: 0;
        gap: 0;
    }

    .nav__item {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav__link {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 1rem;
        color: #333;
        text-decoration: none;
    }

    .dropdown__menu {
        display: none;
        flex-direction: column;
        background-color: #fafafa;
        padding: 0;
    }

    .nav__item:hover .dropdown__menu,
    .nav__item .dropdown__icon:hover+.dropdown__menu {
        display: block;
    }

    .dropdown__link {
        padding: 0.75rem 2rem;
        color: #555;
        text-decoration: none;
    }

    .dropdown__link:hover {
        background-color: #e0e0e0;
    }
}