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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #1a1a1a;
    padding-top: 80px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    box-shadow: 0 2px 10px rgba(255,255,255,0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-logo-img {
    height: 50px;
    width: auto;
    border-radius: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #3b82f6;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.95;
    color: #ffffff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #000000;
}

.btn-white {
    background: white;
    color: #000000;
}

.btn-white:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 80px 0;
    background: #1a1a1a;
}

.bg-light {
    background: #2a2a2a;
}

.bg-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
}

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

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
    color: #ffffff;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #3b82f6;
}

h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #3b82f6;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mission-item {
    text-align: center;
    padding: 30px;
    background: #2a2a2a;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #3a3a3a;
}

.mission-item:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
}

.mission-item p {
    color: #ffffff;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #3a3a3a;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: #3b82f6;
}

.service-card p {
    color: #ffffff;
}

/* Requirements */
.requirements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.requirement {
    padding: 25px;
    background: #2a2a2a;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
    box-shadow: 0 3px 15px rgba(255,255,255,0.1);
}

.requirement h4 {
    color: #3b82f6;
}

.requirement p {
    color: #ffffff;
}

/* Apply Section */
.apply-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.apply-note {
    margin-top: 20px;
    opacity: 0.8;
    font-style: italic;
}

/* About Section */
blockquote {
    font-size: 1.3rem;
    font-style: italic;
    background: #2a2a2a;
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #3b82f6;
}

cite {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #3b82f6;
}

/* Video Section */
.video-section {
    background: #2a2a2a;
    padding: 60px 0;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-embed {
    position: relative;
    width: 600px;
    height: 600px;
    max-width: 90vw;
    max-height: 90vw;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
    border: 2px solid #3b82f6;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
}

.video-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.video-placeholder small {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Press Release & Criteria Pages */
.press-release-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #ffffff;
}

.press-release-content h2 {
    color: #ffffff;
    text-align: left;
    margin-bottom: 20px;
}

.press-release-content h3 {
    color: #3b82f6;
    margin: 30px 0 20px 0;
}

.press-release-content p {
    color: #ffffff;
}

.criteria-section {
    margin-bottom: 60px;
    padding: 30px 0;
}

.criteria-section h3 {
    color: #ffffff;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 15px;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.criteria-section p {
    margin-bottom: 25px;
    line-height: 1.7;
}

.criteria-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.criteria-section li {
    margin-bottom: 8px;
    color: #ffffff;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer a {
    color: #3b82f6;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
    color: #ffffff;
}

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

.faq-section {
    margin-bottom: 50px;
}

.faq-item {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(255,255,255,0.1);
    border-left: 4px solid #3b82f6;
}

.faq-item h3 {
    color: #3b82f6;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Application Page */
.application-intro {
    text-align: center;
    margin-bottom: 50px;
}

.application-requirements {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #3a3a3a;
}

.application-requirements h3 {
    color: #3b82f6;
    margin-bottom: 20px;
}

.application-requirements ul {
    list-style: none;
    padding: 0;
}

.application-requirements li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #ffffff;
}

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

.typeform-embed {
    min-height: 600px;
    background: #000000;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
    border: 2px solid #3b82f6;
}

.typeform-placeholder {
    text-align: center;
    color: #ffffff;
}

.typeform-placeholder h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #3b82f6;
}

.placeholder-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.form-section {
    background: #2a2a2a;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(255,255,255,0.1);
    border: 1px solid #3a3a3a;
}

.form-section h4 {
    color: #3b82f6;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.form-section p {
    margin-bottom: 8px;
    color: #ffffff;
}

.application-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.deadline-notice,
.support-info {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255,255,255,0.1);
    text-align: center;
    border: 1px solid #3a3a3a;
}

.deadline-notice h3,
.support-info h3 {
    color: #3b82f6;
    margin-bottom: 15px;
}

.deadline-notice p,
.support-info p {
    color: #ffffff;
}

.support-info a {
    color: #3b82f6;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.contact-card {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255,255,255,0.1);
    border: 1px solid #3a3a3a;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: #3b82f6;
}

.contact-card h3 {
    color: #3b82f6;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-card p {
    color: #ffffff;
    margin-bottom: 10px;
}

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

.contact-info {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(255,255,255,0.1);
    border: 1px solid #3a3a3a;
}

.contact-info h3 {
    color: #3b82f6;
    margin-bottom: 20px;
}

.contact-info p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #000000;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(255,255,255,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 250px;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 50px 0;
    }

    .mission-grid,
    .services-grid,
    .requirements-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .logo {
        max-width: 150px;
    }

    .video-embed {
        width: 300px;
        height: 300px;
    }
}
