main::before {
    content: '';
    position: absolute;
    inset: 0;
    height: fit-content !important;
    pointer-events: none;
}

.apropos-main {
    height: fit-content;
    min-height: 100vh;
    padding-top: 0;
    background: #f8f9fa;
    display: block;
    width: 100%;
}

.apropos-header {
    background: linear-gradient(135deg, #E5E9EB, #99B8BD);
    padding: 140px 0px 80px;
    position: relative;
    width: 100%;
}

.apropos-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
    pointer-events: none;
}

.apropos-header * {
    position: relative;
    z-index: 1;
}

.apropos-header-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.apropos-title {
    font-size: 56px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.apropos-subtitle {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 400;
}

.apropos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

.apropos-section {
    margin: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

.text-content h2 {
    font-size: 38px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.text-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c75;
    margin-bottom: 16px;
}

.text-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.history-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 500;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.mission-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c75;
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mission-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #99B8BD);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: white;
}

.mission-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.mission-item p {
    font-size: 15px;
    color: var(--secondary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(42, 84, 91, 0.1), rgba(153, 184, 189, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c75;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: top center;
    position: relative;
}

.member-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.7) 100%);
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.member-role {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px !important;
}

.member-description {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c75;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-item {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), #99B8BD);
    transition: height 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.why-item:hover::before {
    height: 100%;
}

.why-number {
    font-size: 36px;
    font-weight: 700;
    color: rgba(42, 84, 91, 0.7);
    margin-bottom: 16px;
}

.why-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.why-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c75;
}

.apropos-cta {
    margin: 100px 0 60px;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(42, 84, 91, 0.05), rgba(153, 184, 189, 0.05));
    border-radius: 24px;
    border: 2px solid rgba(42, 84, 91, 0.1);
}

.apropos-cta h2 {
    font-size: 38px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.apropos-cta > p {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(42, 84, 91, 0.3);
}

.cta-primary:hover {
    background: #1f3e44;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(42, 84, 91, 0.4);
}

.cta-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.cta-primary svg,
.cta-secondary svg {
    transition: transform 0.3s ease;
}

.cta-primary:hover svg,
.cta-secondary:hover svg {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .apropos-container {
        padding: 0 30px 50px;
    }

    .section-content {
        gap: 40px;
    }

    .text-content h2 {
        font-size: 34px;
    }

    .text-content p {
        font-size: 16px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .apropos-header {
        padding: 120px 0px 60px;
    }

    .apropos-title {
        font-size: 42px;
    }

    .apropos-subtitle {
        font-size: 20px;
    }

    .apropos-container {
        padding: 0 25px 40px;
    }

    .apropos-section {
        margin: 60px 0;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-content.reverse {
        direction: ltr;
    }

    .text-content h2 {
        font-size: 32px;
    }

    .history-card,
    .mission-card {
        padding: 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .apropos-cta {
        margin: 80px 0 50px;
        padding: 50px 30px;
    }

    .apropos-cta h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary,
    .cta-secondary {
        width: 80%;
        max-width: 350px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .apropos-header {
        padding: 100px 0px 50px;
    }

    .apropos-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .apropos-subtitle {
        font-size: 18px;
    }

    .apropos-container {
        padding: 0 20px 30px;
    }

    .apropos-section {
        margin: 50px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .text-content h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .text-content p {
        font-size: 15px;
    }

    .history-card,
    .mission-card {
        padding: 25px;
        gap: 25px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 14px;
    }

    .mission-icon {
        width: 56px;
        height: 56px;
    }

    .mission-item h3 {
        font-size: 20px;
    }

    .value-card {
        padding: 30px;
    }

    .value-icon {
        width: 70px;
        height: 70px;
    }

    .value-card h3 {
        font-size: 22px;
    }

    .value-card p {
        font-size: 15px;
    }

    .team-intro {
        font-size: 16px;
    }

    .member-image {
        height: 300px;
    }

    .member-info {
        padding: 20px;
    }

    .member-info h3 {
        font-size: 20px;
    }

    .member-role {
        font-size: 15px;
    }

    .member-description {
        font-size: 14px;
    }

    .why-item {
        padding: 25px;
    }

    .why-number {
        font-size: 32px;
    }

    .why-item h3 {
        font-size: 18px;
    }

    .why-item p {
        font-size: 14px;
    }

    .apropos-cta {
        margin: 60px 0 40px;
        padding: 40px 20px;
        border-radius: 16px;
    }

    .apropos-cta h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .apropos-cta > p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-primary,
    .cta-secondary {
        padding: 14px 28px;
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .apropos-title {
        font-size: 28px;
    }

    .apropos-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .text-content h2 {
        font-size: 24px;
    }

    .text-content p,
    .mission-list li {
        font-size: 14px;
    }

    .history-card,
    .mission-card,
    .value-card,
    .why-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .member-image {
        height: 250px;
    }

    .apropos-cta h2 {
        font-size: 24px;
    }

    .apropos-cta > p {
        font-size: 15px;
    }
}
