/* General Styling for the About Page */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #fafafa;
    line-height: 1.6;
}


/* Header Styles */
header {
    text-align: center;
    padding: 2rem 0;
    background-color: #222;
    color: #fff;
}


.logo-container {
    margin-bottom: 10px;
}

.logo {
    width: 100px;
    height: auto;
}

header h1 {
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

/* Introduction Section */
.company-introduction {
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 20px auto;
    max-width: 900px;
    text-align: center;
    transition: transform 0.3s ease;
}

.company-introduction:hover {
    transform: scale(1.02);
}

.company-introduction h2 {
    color: #00796b;
    font-size: 2em;
    margin-bottom: 20px;
}

.company-introduction p {
    font-size: 1.15em;
    color: #555;
    line-height: 1.8;
    padding: 0 15px;
}

/* Original Styling for Our Roles Section */
.our-roles {
    padding: 40px 20px;
    background-color: #e8f5e9;
    text-align: center;
}

.our-roles h2 {
    color: #2e7d32;
    font-size: 2em;
    margin-bottom: 25px;
}

.role {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 20px auto;
    max-width: 800px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.role:hover {
    transform: scale(1.02);
}

.role h3 {
    color: #00796b;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.role p {
    font-size: 1.1em;
    color: #444;
    line-height: 1.8;
    padding-right: 15px;
    flex: 1;
}

.role-img {
    width: 150px;
    margin-left: 20px;
}

/* Flexbox for Role Content */
.role-content {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.role-content .role-img {
    margin-bottom: 10px;
}

.founder-img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}



/* Future Plans Section */
.future-plans {
    padding: 40px;
    background-color: #f1f8e9;
    text-align: center;
}

.future-plans h2 {
    color: #388e3c;
    font-size: 2em;
    margin-bottom: 20px;
}

.future-plans p {
    font-size: 1.15em;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Call to Action Section */
.cta {
    text-align: center;
    margin-top: 3rem;
}

.cta p {
    font-size: 1.2rem;
    color: #333;
}

.cta a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.cta a:hover {
    color: #0056b3;
}


/* Basic styling for sections */
section {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

/* Flexbox styling for roles */
.role-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.role-img {
    margin-bottom: 10px;
}

.founder-img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}

/* Media Queries for Mobile View */
@media (max-width: 767px) {
    .role {
        flex-direction: column;
        text-align: left;
    }

    .role h3 {
        order: -1;
    }

    .role-content .role-img {
        width: 200px; /* Make image larger */
        margin-bottom: 10px;
    }
}

@media (min-width: 768px) {
    .role-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .role-content .role-img {
        margin-right: 20px;
        margin-bottom: 0;
    }

    .role-content p {
        flex: 1;
    }
}



