﻿
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: #2c3fa3;
    color: white;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

    .site-header .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .site-header .logo img {
        height: 40px;
        display: block;
    }

    .site-header nav a {
        color: white;
        text-decoration: none;
        margin-left: 1rem;
        font-weight: 500;
        transition: color 0.3s;
    }

        .site-header nav a:hover {
            color: #c0cfff;
        }

.site-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f4f5f7;
    border-top: 1px solid #ddd;
    color: #333;
    padding: 2rem 1rem;
    font-size: 0.95rem;
    flex-shrink: 0;
}

    .site-footer .container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        gap: 4rem;
    }

.footer-left,
.footer-right {
    flex: 1;
}

.site-footer a {
    color: #2c3fa3;
    text-decoration: underline;
    font-weight: 500;
}

.site-footer p {
    margin: 0 0 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .site-footer .container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-left,
    .footer-right {
        width: 100%;
    }

    .faq-content {
        flex-direction: column;
    }

    .faq-image {
        width: 100%;
    }
}

.site-header .logo img {
    height: 40px;
    width: auto;
    display: block;
}

.site-header .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

    .site-header .logo img {
        height: 40px;
        width: auto;
        display: block;
    }

.site-header .logo-text {
    color: white;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.logo a.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

    .logo a.logo-link img {
        height: 36px;
        width: auto;
        display: block;
    }

    .logo a.logo-link .logo-text {
        color: white;
        font-weight: 700;
        font-size: 1.5rem;
        letter-spacing: 0.5px;
        font-family: 'Segoe UI', sans-serif;
    }
