* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.2;
    font-size: 1.2rem;
    color: #333;
}

.header {
    background:
        url('/media/strip.jpg') no-repeat center center,
        #0d0918;
    background-size: cover, auto;    
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    height: 50px;
    width: auto;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    padding: 0.5rem 0;
}

nav a:hover {
    opacity: 0.8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.has-submenu {
    position: relative;
}

.has-submenu>a::after {
    content: "▾";
    font-size: 1.2rem;
    margin-left: 6px;
    vertical-align: middle;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    background: #333;
    list-style: none;
    padding: 0.5rem 0;
    min-width: 200px;
}

.submenu li a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.submenu li a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: white;
    white-space: nowrap;
}

.submenu li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.has-submenu:hover .submenu {
    display: block;
}

footer {
    background:
        url('/media/strip.jpg') no-repeat center center,
        #0d0918;
    background-size: cover, auto;  
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 1rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a:hover {
    opacity: 0.8;
}

.email-icon,
.phone-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
}

.email-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234A90E2'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.phone-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234CAF50'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ================= CONTENT SECTION ================= */

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
    line-height: 1.4;
}

.content-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #70195e;
}

.content-section .last-updated {
    color: #666;
    font-size: 1rem;
    font-style: italic;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    display: block;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
    color: #56288a;
}

.content-section p {
    margin-bottom: 1rem;
    color: #333;
}

.content-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-section.faq-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    list-style-type: decimal;
}

.content-section li {
    margin-bottom: 0.75rem;
    color: #333;
}

.content-section a {
    color: #e44097;
    text-decoration: none;
    transition: opacity 0.3s;
}

.content-section a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 1rem;
    }

    .submenu {
        position: static;
        padding-left: 1rem;
    }

    .logo {
        height: 40px;
    }

    .hamburger {
        display: flex;
    }

    nav ul {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #000;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        gap: 0;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid #333;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 1rem 0;
    }

    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    nav ul li.has-submenu>ul {
        display: none;
        padding-left: 1rem;
        background: #444;
        border-radius: 6px;
        margin-top: 0.5rem;
    }

    nav ul li.has-submenu.active>ul {
        display: block;
    }

    nav ul li.has-submenu ul li a {
        padding: 0.5rem 0;
        color: #eee;
    }

    .content-section {
        padding: 2rem 1rem;
    }

    .content-section h1 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }
}