/* Propos Page Styles */
.propos-page {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding-bottom: 4rem;
}

/* Hero Section */
.propos-hero {
    background-color: #0a1a44; /* Dark Blue */
    color: white;
    padding: 4rem 1rem 10rem 1rem; /* Reduced bottom padding */
    text-align: left;
    position: relative;
}

.propos-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.propos-hero p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 900px;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Locations Section */
.propos-locations {
    padding: 0 1rem 3rem 1rem;
    text-align: center;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.propos-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Force 3 columns */
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start; /* Align items to top */
}

.propos-location-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem; /* Push side cards down to create white gap */
}

.propos-location-item--large {
    margin-top: -6rem; /* Pull middle card up into the Hero padding area */
}

.propos-location-img-wrapper {
    width: 100%;
    margin-bottom: 1.5rem;
}

.propos-location-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.propos-location-item--large .propos-location-img {
    height: 260px; /* Taller middle image */
    transform: scale(1.05); /* Slightly larger */
}

.propos-location-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.propos-location-pin {
    height: 30px;
    width: auto;
    margin-bottom: 0.8rem;
}

.propos-location-text {
    font-weight: 500;
    color: #0a1a44;
    font-size: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .propos-locations-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .propos-hero {
        padding-bottom: 4rem;
    }
    .propos-locations {
        margin-top: 0;
    }
    .propos-location-item {
        margin-top: 0; /* Reset margin for mobile */
    }
    .propos-location-item--large {
        margin-top: 0; /* Reset margin for mobile */
    }
    .propos-location-item--large .propos-location-img {
        height: 200px;
        transform: none;
    }
}

/* Approach Section */
.propos-approach {
    padding: 4rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.propos-approach-img {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.propos-approach-content {
    flex: 1;
    min-width: 300px;
}

.propos-approach h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a1a44;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.propos-approach p {
    color: #0a1a44; /* Blue text */
    line-height: 1.6;
    font-size: 1rem;
}

/* Engagement Section */
.propos-engagement {
    padding: 4rem 1rem;
    max-width: 1000px; /* Match Approach width */
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem; /* Match Approach gap */
    flex-wrap: wrap;
    justify-content: flex-start; /* Align left like Approach */
}

.propos-iso-logo {
    height: auto;
    width: 100%;
    max-width: 200px; /* Adjust logo size */
    margin-left: auto; /* Push to right if needed, but here we want left */
    margin-right: auto;
}

/* Wrapper for logo to match approach img flex behavior */
.propos-engagement-img-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    justify-content: center; /* Center logo in its column */
}

.propos-engagement-content {
    flex: 1;
    min-width: 300px;
}

.propos-engagement h2 {
    font-size: 1.8rem; /* Match Approach h2 */
    font-weight: 700;
    color: #0a1a44;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.propos-engagement p {
    color: #0a1a44; /* Blue text as requested */
    font-size: 1rem;
    line-height: 1.6;
}

/* Ethics Section */
.propos-ethics {
    padding: 4rem 1rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.propos-ethics h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0a1a44;
    margin-bottom: 3rem;
}

.propos-ethics-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.propos-ethic-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}

.propos-ethic-icon {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.propos-ethic-label {
    font-weight: 700;
    color: #0a1a44;
    font-size: 0.9rem;
}

.propos-ethics-text {
    max-width: 800px;
    margin: 0 auto;
    color: #0a1a44; /* Blue text */
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Know-How Section */
.propos-knowhow {
    padding: 4rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.propos-knowhow-content {
    flex: 1;
    min-width: 300px;
}

.propos-knowhow h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a1a44;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.propos-knowhow p {
    color: #0a1a44; /* Blue text */
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.propos-knowhow-logo {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.propos-connect-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.propos-btn {
    display: inline-block;
    background-color: #0a1a44;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.propos-btn:hover {
    background-color: #1a2b55;
    color: white;
}

.propos-connect-logo {
    width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
}

.propos-btn {
    display: inline-block;
    background-color: #0a1a44;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.propos-btn:hover {
    background-color: #152c60;
    color: white;
}

/* Welcome Section */
.propos-welcome {
    padding: 4rem 1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.propos-welcome h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0a1a44;
    margin-bottom: 1.5rem;
}

.propos-welcome p {
    color: #0a1a44; /* Blue text */
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .propos-approach, .propos-engagement, .propos-knowhow {
        flex-direction: column;
        text-align: center;
        gap: 2rem; /* Reduce gap */
        align-items: center; /* Ensure items are centered */
    }

    .propos-approach-content, 
    .propos-engagement-content, 
    .propos-knowhow-content,
    .propos-approach-img,
    .propos-engagement-img-wrapper,
    .propos-knowhow-logo {
        min-width: 0; /* Allow shrinking */
        width: 100%; /* Full width */
        max-width: 100%; /* Prevent overflow */
        margin-left: 0;
        margin-right: 0;
    }
    
    .propos-ethics-grid {
        gap: 1rem;
    }
}
