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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

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

/* Navigation */
.main-nav {
    background-color: #0a0a0a;
    padding: 20px 0;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #ffd700;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content {
    margin-bottom: 40px;
}

.hero-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
}

/* Image Placeholders */
.hero-image-placeholder,
.content-image-placeholder {
    margin: 40px 0;
}

.image-box {
    background-color: #1a1a1a;
    border: 2px dashed #444;
    padding: 60px 40px;
    text-align: center;
    border-radius: 8px;
}

.placeholder-text {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    margin-bottom: 10px;
}

.image-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background-color: #000000;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: 1.5px;
}

.content-text p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.faq-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 16px;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    background-color: #000000;
}

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

.faq-question:hover {
    background-color: #1a1a1a;
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #0a0a0a;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.8;
}

/* Dialogue Section */
.dialogue-section {
    padding: 80px 0;
    background-color: #000000;
}

.dialogue-intro {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ffd700;
}

.form-input::placeholder {
    color: #666;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.logo-placeholder {
    width: 100px;
    height: 60px;
    background-color: #1a1a1a;
    border: 2px dashed #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 12px;
    border-radius: 6px;
}

.footer-warning {
    background-color: #1a1a1a;
    border: 2px solid #ff4444;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
}

.warning-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.footer-warning p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

.footer-info {
    margin-bottom: 30px;
    text-align: center;
}

.footer-info p {
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-copyright p {
    color: #666;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

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

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

    .footer-logos {
        gap: 20px;
    }

    .footer-warning {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}