/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #666;
    line-height: 1.6;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header Styles */
.main-header {
    text-align: left;
    margin-bottom: 26rem;
}

.main-header h1 {
    font-size: 3rem;
    color: #555;
    margin-bottom: 1rem;
    margin-top: 18rem;
    text-align: left;
}

.collaboration {
    font-size: 1.2rem;
    color: #888;
}

/* Mission Section */
.mission-section {
    text-align: center;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #777;
}

/* Divider */
.divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(128, 128, 128, 0.5), rgba(0, 0, 0, 0));
    margin: 2rem 0;
}

/* Support Section */
.support-section {
    text-align: center;
    margin: 2rem 0;
}

.support-section h3 {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.support-section h2 {
    font-size: 1.8rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.support-section p {
    font-size: 1rem;
    color: #777;
}

/* Partners Section */
.partners-section {
    text-align: center;
    margin-top: 2rem;
}

.partners-section strong {
    font-size: 1.2rem;
    color: #555;
}

.partners-section p {
    margin-top: 0.5rem;
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header h1 {
        font-size: 2rem;
    }
    
    .support-section h2 {
        font-size: 1.5rem;
    }
}