.apropos-page {
    padding: 60px 0;
    background-color: #fff;
    font-family: 'Comfortaa', sans-serif;
    color: #4A3C31;
}

.apropos-breadcrumbs {
    font-size: 14px;
    margin-bottom: 40px;
    color: #8D7765;
}

.apropos-breadcrumbs a {
    color: #8D7765;
    text-decoration: none;
}

.apropos-breadcrumbs span {
    color: #4A3C31;
    font-weight: bold;
}

.ap-section {
    margin-bottom: 80px;
}

.ap-main-title {
    font-family: 'Poetsen One', sans-serif;
    font-size: 32px;
    color: #C68B50;
    text-align: left;
    margin-bottom: 40px;
}

.ap-section-title {
    font-family: 'Poetsen One', sans-serif;
    font-size: 32px;
    color: #C68B50;
    margin-bottom: 10px;
}

.ap-subtitle {
    font-size: 18px;
    color: #8D7765;
    margin-bottom: 30px;
}

.ap-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.ap-leaf-card {
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ap-leaf-card h3 {
    font-family: 'Poetsen One', sans-serif;
    font-size: 24px;
    color: #2D4A22;
    margin-bottom: 15px;
}

.ap-leaf-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4A3C31;
}

.ap-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.ap-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ap-overlay-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    background: rgba(139, 94, 60, 0.85); /* Brown with opacity */
    padding: 30px;
    color: #fff;
    border-top-left-radius: 20px;
}

.ap-overlay-box h4 {
    font-family: 'Poetsen One', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.ap-overlay-box p {
    font-size: 14px;
    line-height: 1.5;
}

.ap-divider {
    border: none;
    border-top: 2px solid #E5D9CC;
    margin-bottom: 60px;
}

/* Values section */
.ap-value-card {
    background-color: #E5D9CC;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.ap-value-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.ap-icon {
    font-size: 24px;
}

.ap-value-card h4 {
    font-family: 'Poetsen One', sans-serif;
    font-size: 20px;
    color: #4A3C31;
}

.ap-value-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #6D5B4D;
}

/* Bottom Banner */
.ap-bottom-banner {
    background-size: cover;
    background-position: center;
    padding: 60px;
    border-radius: 20px;
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    overflow: visible;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ap-bottom-content {
    max-width: 70%;
    z-index: 2;
}

.ap-bottom-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #2D4A22;
    font-weight: 500;
}

.ap-mascotte {
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 280px;
    z-index: 3;
}

.ap-mascotte img {
    width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .ap-grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ap-overlay-box {
        width: 100%;
    }
    
    .ap-bottom-banner {
        padding: 40px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ap-bottom-content {
        max-width: 100%;
        margin-bottom: 120px;
    }
    
    .ap-mascotte {
        width: 200px;
        right: 10px;
        bottom: -5px;
    }
    
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .text-center-mobile {
        text-align: center;
    }
}
