* {
    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;
}

/* About Section */
.about-section {
    padding: 20px 100px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

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

/* About Header */
.about-header {
    margin-bottom: 20px;
}

.about-title {
    margin-bottom: 16px;
}

.about-title h1 {
    font-size: 48px;
    font-weight: 900;
    color: #1d1d1f;
    line-height: 1;
    letter-spacing: -2px;
    margin: 0;
}

/* Story Section */
.story-section {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    margin-bottom: 40px;
    margin-top: 0;
    align-items: start;
}

.about-header-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 24px;
}

/* Story Content */
.story-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
}

.story-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

.story-images {
    display: flex;
    gap: 16px;
}

.story-images img {
    flex: 1;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
}

/* Mission */
.mission-section {
    margin-bottom: 60px;
}

.mission-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 16px;
}

.mission-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.mission-image {
    flex: 0 0 300px;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
}

/* Founders */
.founders-section {
    margin-bottom: 60px;
}

.founders-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 24px;
    text-align: center;
}

.founders-logos {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    overflow-x: auto;
    padding: 12px 0;
}

.founder-logo {
    background: #1d1d1f;
    border-radius: 12px;
    padding: 20px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 80px;
}

.founder-logo img {
    max-width: 100px;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.scroll-controls {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    margin-top: 8px;
}

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

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

/* Team */
.team-section {
    margin-bottom: 60px;
}

.team-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 24px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.team-member h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 4px;
}

.team-member p {
    font-size: 13px;
    color: #6b7280;
}
/* FAQ Section */
.faq-teaser {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 32px 0;
}

.faq-teaser-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* centers everything inside */
    gap: 12px;           /* spacing between h3, p, and button */
    margin-top: 20px;
    text-align: center;  /* centers text inside heading and paragraph */
}

.faq-teaser-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
}

.faq-teaser-content p {
    font-size: 13px;
    color: #6b7280;
    margin: 0; /* spacing handled by gap in container */
}

/* Ghost-style button */
.btn-faq {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 10px 28px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-faq:hover {
    background: #2563eb;
    color: white;
}

/* FAQ Preview Card */
.faq-preview {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.faq-preview-header {
    font-size: 12px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 8px;
}

.faq-preview h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.faq-preview p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* 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;
}


