.header {
    background-color: var(--header-background-color);
    padding: 20px 0;

    .header-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        justify-content: flex-start;
        align-items: center;

        .logo-container {
            z-index: 10001;
        }
    }

    .logo-image {
        height: 55px;
        margin-right: 15px;
    }

    .nav-bar {
        display: flex;
        gap: 10px;
    }

    .nav-link {
        padding: 0.625rem;
        font-weight: 700;
        font-size: 0.9375rem;
        color: var(--header-text-color);
        text-decoration: none;

        &.active {
            color: var(--header-text-active-color);
        }

        &:hover {
            color: var(--header-text-hover-color);
        }
    }

    .menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
        .header-inner {
            justify-content: space-between;
        }
        .menu-toggle {
            display: block;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            z-index: 10000;
            position: relative;
        }

        /* Mobile nav hidden by default */
        .nav-bar {
            display: none;
            flex-direction: column;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-color);
            padding-top: 140px;
            align-items: center;
            z-index: 9999;
        }

        .nav-bar.show {
            display: flex;
        }

        .nav-link {
            padding: 1rem;
            font-size: 1.2rem;
            border-bottom: 1px solid #eee;
            width: 50%;
            text-align: center;

            &:first-child {
                border-top: 1px solid #eee;
            }
        }
    }
}

.footer {
    background-color: var(--footer-background-color);
    color: var(--footer-text-color);
    padding: 20px 0;

    .footer-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 40px;

        .footer-top {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;

            .footer-logo {
                width: 120px;
                height: auto;
                filter: invert(1);
            }

            .top-container {
                .sub-title {
                    font-weight: bold;
                    margin-bottom: 10px;
                    font-size: 1rem;
                }

                .footer-app-buttons {
                    display: flex;
                    gap: 10px;
                    margin-bottom: 15px;

                    img {
                        height: 40px;
                        cursor: pointer;
                    }
                }

                .footer-social-icons {
                    display: flex;
                    gap: 12px;

                    img {
                        width: 28px;
                        height: 28px;
                        cursor: pointer;
                    }
                }
            }
        }

        .footer-middle {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            flex-wrap: wrap;
            gap: 12px;

            .nav-bar {
                display: flex;
                gap: 12px;
                flex-wrap: wrap;
            }

            .nav-link {
                padding: 0.625rem 0;
                font-weight: 700;
                font-size: 0.9375rem;
                color: var(--footer-text-color);
                text-decoration: none;

                &:hover {
                    color: var(--footer-text-hover-color);
                }
            }

            .footer-warning {
                margin-top: 10px;
                font-size: 11px;
                font-weight: bold;
                text-transform: uppercase;
                max-width: 600px;
                line-height: 1.2;
            }
        }

        hr {
            border-color: rgba(255, 255, 255, 0.2);
            margin: 20px 0;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            flex-wrap: wrap;
            gap: 20px;

            .footer-bottom-links {
                display: flex;
                gap: 15px;

                a {
                    color: var(--footer-text-color);
                    text-decoration: none;
                    font-weight: bold;

                    &:hover {
                        color: var(--footer-text-hover-color);
                    }
                }
            }
        }
    }
}

