/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.mission-content h2 {
    color: black;
}

/* About Page */
.about-page {
    padding-top: 10px;
    margin-bottom: 10px;
}

.mission-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

/* About Founder */
.about-founder {
    padding: 1rem 0;
}

.founder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.founder-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
}

.founder-text {
    max-width: 600px;
    text-align: center;
}

.founder-text h2 {
    color: black;
    margin-bottom: 1rem;
}

.founder-text p {
    color: #333333;
}

.social-links-oners {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.social-links-oners a {
    margin-right: 1rem;
    color: #000000;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links-oners a:last-child {
    margin-right: 0;
}

.social-links-oners a:hover {
    color: #007bff;
}

.container h2 {
    color: black;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }

    .founder-content {
        flex-direction: column;
        text-align: center;
    }

    .founder-image {
        width: 200px;
        height: 200px;
    }

    .social-links-oners {
        justify-content: center;
    }
}