/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #000000;
}

/* Hero Landing Section */
.hero-landing {
    min-height: 100vh;
    background: linear-gradient(135deg, #b89b72 0%, #866651 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-card {
    background: rgba(255, 255, 255, 0.32);
    border-radius: 13px;
    padding: 30px 30px 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.logo-section {
    margin-bottom: 20px;
}

.main-logo {
    height: 80px;
    width: auto;
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    color: #094792;
    margin-bottom: 10px;
}

.hero-subtitle {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Button Section */
.button-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    margin: 20px 0;
}

.button-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 300px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 12px;
    padding: 11px 20px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease;
    margin-bottom: 0px;
}

.button-item:hover {
    background: rgba(255, 255, 255, 0.30);
}

.button-item .icon img {
    width: 30px;
    height: 30px;
}

.button-item .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.copyright {
    color: #ffffff;
    font-size: 14px;
    padding: 30px 0;
    margin: 0;
}

/* Content Section */
.content-section {
    background-color: #ffffff;
    padding: 30px 20px;
}

.container-content {
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #000000;
}

.content-section h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #000000;
}

.content-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 12px;
    color: #000000;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #000000;
}

.content-section ul {
    margin: 15px 0 15px 30px;
    list-style-type: disc;
}

.content-section ul li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
}

.content-section a {
    color: #0000ee;
    text-decoration: underline;
}

.content-section a:hover {
    color: #551a8b;
}

.content-image {
    margin: 30px 0;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* FAQ Section */
.faq-accordion {
    max-width: 900px;
    margin: 30px auto;
}

.faq-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    padding: 15px 20px;
    background: #f5f5f5;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    transition: background 0.3s;
}

.faq-toggle:hover {
    background: #eeeeee;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
}

.faq-item.active .faq-content {
    max-height: 300px;
}

.faq-content p {
    padding: 15px 20px;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #222222;
    color: #9ca3af;
    padding: 30px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-nav a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-responsible {
    font-size: 12px;
    color: #9ca3af;
}

.footer-responsible a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-menu-items {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-menu-items a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
}

.footer-menu-items a:hover {
    color: #ffffff;
}

.footer-about h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 13px;
    line-height: 1.7;
    color: #9ca3af;
}

.footer-social-col h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #374151;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #4b5563;
}

.footer-copyright,
.footer-sitemap {
    font-size: 13px;
    color: #9ca3af;
    margin: 8px 0;
}

.footer-sitemap a {
    color: #9ca3af;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-card {
        padding: 25px 20px 0;
    }

    .button-item {
        width: 100%;
        max-width: 300px;
    }

    .content-section h1 {
        font-size: 26px;
    }

    .content-section h2 {
        font-size: 22px;
    }

    .content-section h3 {
        font-size: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-menu-items {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-landing {
        padding: 20px 15px;
    }

    .main-logo {
        height: 60px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .content-section {
        padding: 20px 15px;
    }

    .content-section h1 {
        font-size: 22px;
    }

    .content-section h2 {
        font-size: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}