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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f7;
    color: #1d1d1f;
    padding-top: 100px;
}

/* Navigation - ORIGINAL */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 40px;
    display: flex;
    justify-content: center;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    gap: 48px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #1d1d1f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn-log-in {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-log-in:hover {
    background: #1e40af;
}

.btn-register {
    background: #422006;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-register:hover {
    background: #531f07;
}

/* FAQ Section - ORIGINAL */
.faq-section {
    padding: 40px 100px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.faq-header {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.faq-title {
    flex: 1;
}

.faq-header h1 {
    font-size: 56px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0;
    line-height: 1.15;
    max-width: 500px;
}

.faq-description {
    font-size: 15px;
    color: #6b7280;
    max-width: 400px;
    line-height: 1.6;
    padding-top: 40px;
}

.highlight {
    color: #2563eb;
}

/* FAQ Cards - ORIGINAL */
.faq-cards-wrapper {
    position: relative;
}

.faq-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    align-items: stretch;
}

.faq-cards::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.faq-card {
    min-width: 260px;
    max-width: 260px;
    min-height: 420px;
    background: #d1d5db;
    border-radius: 32px;
    padding: 48px 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Gradient opacity for non-active cards */
.faq-card:nth-child(2) {
    background: #d1d5db;
    opacity: 0.85;
}

.faq-card:nth-child(3) {
    background: #e5e7eb;
    opacity: 0.7;
}

.faq-card:nth-child(4) {
    background: #e5e7eb;
    opacity: 0.5;
}

.faq-card.active {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    min-width: 320px;
    max-width: 320px;
    min-height: 420px;
    opacity: 1;
    justify-content: flex-start;
}

.faq-card h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

.faq-card.active h3 {
    color: white;
}

.faq-card:not(.active) h3 {
    color: #4b5563;
}

.faq-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    display: none;
}

.faq-card.active p {
    display: block;
}

/* Scroll Controls - NEW */
.scroll-controls {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    margin-top: 16px;
}

.scroll-btn {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    color: #6b7280;
    white-space: nowrap;
}

.scroll-btn:hover {
    color: #2563eb;
}

/* Question Form Section - NEW */
.question-form-section {
    margin-top: 60px;
    padding-top: 0;
}

.question-form-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.question-prompt {
    flex: 0 0 auto;
}

.question-prompt h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 8px;
}

.question-prompt p {
    font-size: 13px;
    color: #6b7280;
}

.question-form {
    flex: 1;
    position: relative;
}

.form-input-wrapper {
    position: relative;
    background: white;
    border: 2px solid #2563eb;
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.form-icon {
    width: 40px;
    height: 40px;
    background: #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

.form-input-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-input-container textarea {
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    color: #1d1d1f;
    resize: none;
    min-height: 60px;
    background: transparent;
}

.form-input-container textarea::placeholder {
    color: #9ca3af;
}

.form-submit {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    transition: all 0.2s;
}

.form-submit:hover {
    color: #1e40af;
}

/* Footer */
footer {
    background: #1e3a8a;
    color: white;
    padding: 60px 40px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.2s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-info h4,
.location-info h4,
.footer-column h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.contact-info p,
.location-info p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-apply-btn {
    background: white;
    color: #1e3a8a;
    border: none;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.2s;
}

.footer-apply-btn:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}