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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    padding: 2rem;
}

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

.last-updated {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 1rem;
    text-align: left;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.intro-text {
    font-size: 1rem;
    color: #333333;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.policy-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.section-intro {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.subsection {
    margin-bottom: 1.5rem;
    margin-left: 0;
}

.subsection-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.subsection p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.subsection ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: #333333;
}

.subsection li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.subsection li strong {
    color: #000000;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1.5rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .subsection-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem;
    }

    .main-title {
        font-size: 1.75rem;
    }

    .intro-text {
        font-size: 0.9375rem;
    }
}

/* Support Page Styles */
.support-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f5f5f5;
    min-height: 100vh;
    padding: 3rem 2rem;
}

.support-header {
    text-align: center;
    margin-bottom: 3rem;
}

.support-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.support-description {
    font-size: 1rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.support-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Form Column */
.form-column {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-section {
    width: 100%;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 2rem;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-family: inherit;
    color: #000000;
    background-color: #ffffff;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #1d4ed8;
}

.submit-icon {
    font-size: 1.25rem;
}

/* Info Column */
.info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-panel,
.faq-panel {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
}

.contact-content {
    flex: 1;
}

.contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666666;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 0.9375rem;
    color: #000000;
    margin-bottom: 0.25rem;
}

.contact-value a {
    color: #2563eb;
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

.contact-hours {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 0.25rem;
}

.faq-description {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.faq-btn {
    background-color: #e0f2fe;
    color: #0369a1;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
}

.faq-btn:hover {
    background-color: #bae6fd;
}

.faq-btn:nth-child(3) {
    grid-column: 1 / -1;
}

/* Responsive Design for Support Page */
@media (max-width: 968px) {
    .support-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .support-container {
        padding: 2rem 1.5rem;
    }

    .support-title {
        font-size: 2rem;
    }

    .form-column {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .support-container {
        padding: 1.5rem 1rem;
    }

    .support-title {
        font-size: 1.75rem;
    }

    .form-column,
    .info-panel,
    .faq-panel {
        padding: 1.25rem;
    }
}
