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

:root {
    color-scheme: dark;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #212529;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Styles */
.site-header {
    background-color: #343A40;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-button {
    background-color: #4a9eff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    display: inline-block;
}

.nav-button:hover {
    background-color: #3a8eef;
    opacity: 0.9;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 60px 0;
}

/* Main Content for Form Page - Full Width */
.main-content-form {
    flex: 1;
    padding: 0;
    width: 100%;
}

.content-wrapper {
    background-color: #2a2d31;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease;
}

.content-wrapper:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 42px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 20px;
    color: #b0b8c0;
}

/* Form Container - Full Width */
.form-container-full {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.form-container-full iframe {
    display: block;
    width: 100%;
}

/* Footer */
.site-footer {
    background-color: #343A40;
    padding: 30px 0;
    margin-top: auto;
}

.footer-content {
    text-align: center;
    color: #b0b8c0;
    font-size: 14px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .page-title {
        font-size: 36px;
    }

    .content-wrapper {
        padding: 30px;
    }
}

@media screen and (max-width: 768px) {
    .header-content {
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #343A40;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link, .nav-button {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .content-wrapper {
        padding: 20px;
    }

    .main-content {
        padding: 30px 0;
    }
}

@media screen and (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .logo-text {
        font-size: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .nav-button {
        font-size: 14px;
        padding: 8px 16px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Smooth transitions and animations */
@media (prefers-reduced-motion: no-preference) {
    * {
        transition-duration: 0.3s;
        transition-timing-function: ease;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #4a9eff;
    outline-offset: 2px;
}

/* Logo link styling */
.logo a {
    display: flex;
    align-items: center;
}

/* Active navigation state */
.nav-link.active {
    color: #4a9eff;
    font-weight: bold;
}

/* FAQ Page Styles */
.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #2a2d31;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #4a9eff;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.3);
    transform: translateX(5px);
}

.faq-question {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-answer {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 0;
}

.faq-answer a {
    color: #00d4ff;
    text-decoration: underline;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #5ce1ff;
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px 20px;
    background-color: #1D1D1F;
    border-radius: 8px;
}

.faq-cta p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #b0b8c0;
}

/* Contact Page Styles */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-card {
    background-color: #2a2d31;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #4a9eff;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.3);
}

.contact-icon {
    color: #4a9eff;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.contact-title {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-description {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.contact-info-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.contact-link {
    color: #0066ff;
    text-decoration: underline;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0099ff;
}

.address-box {
    text-align: center;
}

.address-box p {
    margin: 8px 0;
    color: #000000;
    font-size: 15px;
    line-height: 1.6;
}

.address-box strong {
    color: #000000;
    font-size: 16px;
}

.contact-cta {
    text-align: center;
    padding: 40px 20px;
    background-color: #1D1D1F;
    border-radius: 8px;
}

.contact-cta p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #b0b8c0;
}

/* CTA Button Styles */
.cta-button {
    display: inline-block;
    background-color: #4a9eff;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #3a8eef;
    transform: scale(1.05);
}

/* Responsive styles for FAQ and Contact pages */
@media screen and (max-width: 768px) {
    .faq-item {
        padding: 25px;
        margin-bottom: 20px;
    }

    .faq-question {
        font-size: 20px;
    }

    .faq-answer {
        font-size: 15px;
    }

    .contact-card {
        padding: 30px 25px;
    }

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

    .contact-link {
        font-size: 18px;
    }

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

@media screen and (max-width: 480px) {
    .faq-item {
        padding: 20px;
        margin-bottom: 15px;
    }

    .faq-question {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .contact-title {
        font-size: 22px;
    }

    .contact-link {
        font-size: 16px;
        padding: 6px 12px;
    }

    .address-box p {
        font-size: 15px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}
