.about-section {
    padding-top: 5px;
    min-height: 100vh;
    display: flex;
}

.about-left
{
 flex: 1 1 50%;
    padding: 40px;
    border-radius: 10px 40px  40px 10px;
    background-color: #e9ecef;
}
.about-right {
    flex: 1 1 50%;
    padding: 60px;
    padding-left: 30px;
}
.about-right ul {
    list-style-type: circle;
    padding: 20px;
    margin-bottom: 5px;
}
.about-section h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.about-section h2 {
    font-size: 1.8em;
    margin-top: 20px;
}

.about-section p {
    line-height: 1.6;
}
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        margin-top: 60px;
        padding: 20px;
    }
    .about-left, .about-right {
        flex: 1 1 100%;
        padding: 20px;
    }
    .about-right {
        padding-left: 0;
    }
    .about-section h1 {
        font-size: 2em;
    }
    .about-section h2 {
        font-size: 1.5em;
    }
   .about-left, .about-right {
    
        padding: 20px;
    }
    .about-section h1 {
        font-size: 2em;
    }
    .about-section h2 {
        font-size: 1.5em;
    }
}

/* form */
.form-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    gap: 30px;
}
.from-left {
    flex: 1 1 50%;
    padding: 20px;
    /* Make the map responsive */
    display: flex;
    flex-direction: column;
}
.from-left iframe {
    width: 100%;
    height: 400px; /* Increased height */
    min-height: 250px; /* Increased min-height */
    border-radius: 8px;
    border: 1px solid #ced4da;
    box-sizing: border-box;
    max-width: 100%;
}
@media (max-width: 900px) {
    .form-section {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    .from-left {
        flex: 1 1 100%;
        padding: 10px 0;
    }
    .form-container {
        padding: 15px;
    }
    .from-left iframe {
        height: 300px; /* Increased height for medium screens */
    }
}

@media (max-width: 600px) {
    .form-section {
        padding: 10px 5px;
    }
    .form-container {
        padding: 10px;
    }
    form input, form textarea {
        font-size: 0.95rem;
        padding: 8px;
    }
    form button {
        font-size: 0.95rem;
        padding: 8px 10px;
    }
    .from-left iframe {
        height: 200px; /* Increased height for small screens */
    }
}
.from-right {
    flex: 1 1 50%;
    padding: 20px;
}
.form-container{
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
form {
   display: flex;
   flex-direction: column;
    gap: 15px;
}
form input, form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
}
form button {
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}
form button:hover {
    background-color: #0056b3;
}
p
/* team */

.team-section {
    padding: 40px;
    background-color: #f8f9fa;
}
.team-intro {
    text-align: center;
    margin-bottom: 30px;
}

.team-intro p {
    font-size: 1.2rem;
    color: #6c757d;
    text-align: left;
}
.team-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 400px;
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    border-left: 5px solid #007BFF;
    box-sizing: border-box;
}
.team-member:nth-child(2) {
    border-left-color: #28a745;
}

.team-member:nth-child(3) {
    border-left-color: #dc3545;
}

@media (max-width: 900px) {
    .team-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .team-member {
        min-width: 220px;
        width: 100%;
        max-width: 500px;
    }
    .team-intro p {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .team-section {
        padding: 20px 10px;
    }
    .team-member {
        padding: 15px;
        font-size: 0.95rem;
    }
    .team-intro h2 {
        font-size: 1.3em;
    }
    .team-intro p {
        font-size: 1em;
    }
}
.explore-button {
    font-size: 1.2rem;
    background-color: #007BFF;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    gap: 1rem;
    margin: 4px;
}