/*ABOUT SECTION*/

/* CSS Styling */

.protection-section {
    background-color: #003051;
    color: white;
    padding: 3rem 0px 10rem 0px;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
}


.content-wrapper {
    max-width: 1200px;
    display: flex;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-bottom: 3rem;
}

.protection-section  .main-image {
    width: 70%;
    height: auto;
}

.protection-section .overlay-image {
    width: 70%;
    left: 10%;
    position: absolute;
    bottom: -20px;
    /* border: 3px solid white; */
}


.text-content {
    max-width: 600px;
    margin-top: 1rem;
}

.text-content h2 {
    color: #fff;
}

.year {
    color: #53911F;
    font-weight: bold;
    font-size: 1.5rem  ;
    margin: 0 0 10px;
}

.organization-title,
h2 {
    font-size: 2rem;
    line-height: 1.2;
    font-family: "Jost";
    margin: 0 0 20px;
    font-weight: 600;
}

.description {
    font-size: 1.125rem;
    line-height: 1.5;
}

.content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.image-wrapper {
    width: 100%;
    max-width: 350px;
}

.organization-title,
h2 {
    font-size: 24px;
}


@media (min-width: 992px) {
    .protection-section {
        padding: 4rem 0px 11rem 0px;
    }
    .container.content-wrapper {
        gap: 00px;
    }
    .image-wrapper {
        width: 100%;
        max-width: 46%;
    }
    .content-wrapper {
        flex-direction: row;
    }
    .image-wrapper {
        width: 100%;
    }
    .text-content {
        padding-top: 4rem;
        max-width: 48%;
    }
    .protection-section .overlay-image {
        width: 70%;
        bottom: -140px;
        left: 20%;
    }
}

@media (min-width: 1200px) {
    .protection-section {
        padding: 6rem 0px 11rem 0px;
    }

    .text-content {
        max-width: 50%;
    }
    
    .organization-title,
    .protection-section h2 {
        font-size: 2.5rem;
    }
}


/* Section Styles */
.services-section {
    text-align: center;
    padding: 0px;
    background-color: #EDEDED;
    padding: 2rem 0rem;
}

.organization-title,
.services-section h2 {
    color: #53911F;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}

.services-section p {
    color: #404040;
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 1.125rem;
}

.services-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 31px;
}

/* Services Container */
.service-card {
    text-align: left;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    padding: 20px;
    max-width: 300px;
    flex: 1;
    transition: transform 0.2s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Icon Styling */
.icon-container {
    margin-bottom: 15px;
}

.icon-container img {
    width: auto;
    height: 70px;
    height: auto;
    display: inline-block;
}

/* Text Content */
.service-card h3 {
    color: #1f3651;
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 26px;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.service-card a.btn {
    width: fit-content;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #9e3d3d;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #4a7c2f;
}



@media (min-width:1024px){
    .services-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 30px;
    }

    .service-card {
        padding: 3rem 2rem 2rem 2rem;
        max-width: 340px;
        display: flex;
        flex-direction: column;
    }

    .service-card a.btn {
        margin: auto 0 0 0;
    }

    .services-section {
        padding: 4rem 0rem;
    }
}


@media (min-width:1200px){
    .organization-title,
    .services-section h2 {
        font-size: 2.625rem;
    }

    .services-section p {
        margin: 0 auto 80px auto;
    }

    .services-section .service-card p {
        margin: 0 auto 40px auto;
    }
}





/*LINES DECO ABOUT US*/

.protection-section .lines-deco {
    position: absolute;
    bottom: 5rem;
    width: 100%;
    width: 950px;
    left: 0;
    top: auto;
    z-index: 0;
}

@media (min-width:992px){
    .protection-section .lines-deco {
        width: 100%;
    }
}

@media (min-width:1200px){
    .protection-section .lines-deco {
        bottom: 8rem;
    }
}


/*LINES DECO PARTNERS*/
.container-organizations {
    position: relative;
}

.container-organizations .lines-deco-2 {
    position: absolute;
    bottom: 5rem;
    height: auto;
    width: 950px;
    left: 0;
    top: 0;
    z-index: 1;
    display: none;
}

@media (min-width:992px){
}

@media (min-width:1200px){
}