/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    /* background-color: #f4f4f4; */
    background: linear-gradient(to bottom, #c6feff, #c6feff, #f5f5f5); 
    margin: 0;
    padding: 0;
    color: #333;
}

* {
    box-sizing: border-box;
}

/* Main Content Styles */
.main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Who We Are Section */
.who-we-are {
    /* background-color: #ffffff; */
    /* padding: 60px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* height: 100vh; Make the section full height of the viewport */
    margin: 0 auto;
}

.who-we-are h1 {
    font-size: 5rem;
    padding: 60px 20px;
    margin: 0;
    color: #333;
}

/* Details Section */
.details-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.detail-cards {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.detail-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.detail-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
}
.detail-cards p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}
/* Statement Section */
.statement-section {
    background-color: #555;
    padding: 50px 30px;
    border-radius: 10px;
    color: #ffffff;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mission and Purpose Section */
.mission-purpose-section {
    display: flex;
    gap: 20px;
}

.mission-purpose-section .mission,
.mission-purpose-section .purpose {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mission-purpose-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.mission-purpose-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

/* Legal Compliance Section */
.legal-compliance {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    text-align: center;
}

.legal-compliance h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.legal-compliance p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}


/* Footer Styles */
.footer {
    background-color: #333;
    padding: 20px 0;
    color: #fff;
    text-align: center;
    margin-top: 40px;
}

.footer-content p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar ul {
        display: none;
    }

    .navbar .sign-up {
        display: none;
    }

    .mission-purpose-section {
        flex-direction: column;
    }
}
