/* Others Page Styles */

/* Hero Subtitle */
.mission-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-top: 1rem;
    max-width: 700px;
    line-height: 1.6;
}

/* Opportunities Section */
.others-opportunities-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

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

.others-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.others-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #cbd5e1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

/* Options Grid */
.others-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.others-option-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.others-option-card:hover {
    transform: translateY(-8px);
}

.others-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.others-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.others-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.others-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Call to Action Section */
.others-cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.others-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.others-cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.others-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.others-cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #ffffff;
    color: #8b5cf6;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.others-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .others-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .others-section-title {
        font-size: 2rem;
    }

    .others-intro-text {
        font-size: 1rem;
    }

    .others-options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .others-cta-title {
        font-size: 2rem;
    }

    .others-cta-text {
        font-size: 1.125rem;
    }

    .others-opportunities-section,
    .others-cta-section {
        padding: 3rem 1.5rem;
    }
}
