@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/* Green Section */

.green-section {
    background-color: #bcdafa;
    display: flex;
    gap: 20px; /* Adds space between the image and text */
    padding: 20px;
}
.pict-desc{
    padding-left: 30px;
    font-size: 18px;
}

.content-section {
    flex: 0 0 auto; /* Ensures the image keeps its intrinsic size */
}

.green-section  .first-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-bottom: 20px;
    padding-left:120px;
}

.text-content {
    flex: 1 1 auto; /* Allows the text to grow and take up the remaining space */
    text-align: left; /* Ensures text aligns properly */
    padding-right: 50px;
}

.mission-text {
    color: #1E1E1E;
    font-family: Outfit;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

.popo {
    color: #000;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .green-section {
        flex-direction: column;
        align-items: center;
    }

    .content-section {
        text-align: center;
    }

    .green-section .text-content {
        padding: 20px;
        padding-right: 20px;
        text-align: center;
    }

    .mission-text {
        font-size: 20px;
    }

    .popo {
        font-size: 14px;
        text-align: center;
    }
    .green-section .first-image{
        padding: 0px;
        max-width: 200px;
    }
    .text-content .second-image{
        max-width: 300px;
    }
    .pict-desc{
        padding-left: 0px;
        font-size: 14px;
    }
}

/** Founder Section **/

.founder-section {
    text-align: center;
    padding-left: 140px;
    padding-right: 140px;
    padding-bottom: 20px;
}

.founder-section h3 {
    margin-bottom: 20px;
}

.founder-section .content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.founder-section p {
    flex: 1;
    text-align: left;
    margin: 0;
}

.founder-section iframe {
    flex-shrink: 0;
}
.video-container iframe {
    width: 560px;
    height: 315px;
}

.accordion-content {
    display: none;
    margin-top: 10px;
}

.accordion-toggle {
    background-color: transparent;
    border: none;
    color: #007BFF;
    cursor: pointer;
    font-size: 1em;
    text-decoration: underline;
    padding: 0;
    display: none;
}

@media only screen and (max-width: 1200px) {
    .founder-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .founder-section .content {
        flex-direction: column;
        align-items: center;
    }

    .founder-section p {
        text-align: center;
        margin-top: 20px;
    }
    .founder-section iframe{
        max-width: 300px;
    }
    .video-container iframe{
        width: 300px;
        height:200px;
    }
    .accordion-toggle {
        display: inline;
    }
    .accordion-content {
        display: none;
    }
}
@media (min-width: 1201px) {
    .accordion-toggle {
        display: none;
    }
    .accordion-content {
        display: block;
    }
}



/* Why GEEPC Part*/

.why-h2 {
    color: #000;
    text-align: center;
    font-family: Outfit;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
    padding: 10px;
}

.why-geepc {
    padding: 0 130px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-desc-border, .why-desc-border-2 {
    border-radius: 50px;
    border: 8px solid #5a7ecf;
    background:  #bcdafa;
    width: 100%;
    max-width: 950px;
    margin-bottom: 20px;
    padding: 20px;
    position: relative;
    text-align: left;
    box-sizing: border-box;
}

.why-desc {
    color: #000;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin-right: 20px;
}

.why-image {
    width: 120px;
    height: auto;
    /* border-radius: 50px; */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -170px;
}

@media (max-width: 1200px) {
    .why-geepc {
        padding: 0 20px;
    }

    .why-desc-border, .why-desc-border-2 {
        padding: 20px;
        width: 100%;
    }

    .why-image {
        width: 100px;
        position: relative;
        top: auto;
        transform: none;
        right: auto;
        margin: 10px 0 0 0;
        align-self: center;
    }

    .why-desc {
        margin-right: 0;
        text-align: center;
    }

    .why-h2{
        font-size: 20px
    }
    .why-desc{
        font-size: 14px;
    }
}

/* Are you Section */

.are-you{
    word-wrap: break-word;
    text-align: center;
    background-color: #bcdafa;
}
.text-are-you{
    font-size: 30px; 
    font-family: Zilla Slab; 
    font-weight: 600;
    padding:100px;
    color: #000;

}

.text-are-you a{
    color: black;
    text-decoration: none;
}
@media (max-width: 1200px) {
    .green-section {
        flex-direction: column;
    }
    .green-section img {
        margin-bottom: 20px;
    }
    .text-are-you{
        font-size: 20px;
    }
    .why-center{
        display: flex;
        justify-content: center;
        align-items: center;
    }
}