/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

/* Header */

/* About Section */
.about-container {
    width: 80%;
    margin: 40px auto;
    padding: 20px;
}

/* About Content */
.about-content h2 {
    color: green;
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* CEO Section */
.ceo-section {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.ceo-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 4px solid green;
}

.ceo-info {
    flex: 1;
}

.ceo-info h2 {
    color: green;
}

.ceo-info h3 {
    color: #333;
    margin-top: 5px;
}

.ceo-info p {
    font-size: 1em;
    line-height: 1.5;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .ceo-section {
        flex-direction: column;
        text-align: center;
    }
    
    .ceo-image {
        margin-bottom: 15px;
    }
}
