.acerca-page {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color: #fff;
    width: 100vw;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    top: 0;
}

.acerca-page .hero-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.acerca-page h1, .acerca-page h2, .acerca-page h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.acerca-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #1A3F8A;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #1A3F8A;
}

.hero-section {
    position: relative;
    height: 300px;
    background-color: #1A3F8A;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin: 0;
    padding-top: 0;
    width: 100vw;
    max-width: 100%;
    left: 0;
    top: -1px;
}

.admin-bar .acerca-page .hero-section {
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 63, 138, 0.85);
    color: #fff;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 48px;
    margin: 0;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin: 0;
    animation: fadeInUp 1s ease;
    max-width: 700px;
    margin: 0 auto;
}

.content-wrapper {
    background-color: #ffffff;
    position: relative;
    padding-bottom: 40px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.intro-section {
    padding: 80px 0 60px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-content {
    flex: 3;
}

.intro-image {
    flex: 2;
    text-align: center;
}

.intro-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;
}

.intro-image img:hover {
    transform: scale(1.05);
}

.intro-content h2 {
    font-size: 36px;
    color: #1A3F8A;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.intro-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #1A3F8A;
}

.values-section {
    padding: 80px 0;
    position: relative;
}

.values-section:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1A3F8A;
}

.value-card p {
    font-size: 15px;
    color: #555;
    margin: 0;
}


.mission-vision-section {
    padding: 100px 0;
    display: flex;
    gap: 40px;
}

.mission-box, .vision-box {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-box {
    background-image: linear-gradient(135deg, #1A3F8A, #0b1f43);
}

.vision-box {
    background-image: linear-gradient(135deg, #0b1f43, #1A3F8A);
}

.mission-content, .vision-content {
    padding: 40px;
    color: white;
    text-align: center;
    z-index: 1;
}

.mission-box h2, .vision-box h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 28px;
}

.mission-box p, .vision-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
}


.benefits-section {
    padding: 80px 0 100px;
    background-color: #ffffff;
    margin-bottom: 0;
}

.benefits-container {
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    padding-left: 20px;
    position: relative;
}

.benefit-number {
    font-size: 48px;
    font-weight: 700;
    color: #1A3F8A;
    opacity: 0.8;
    margin-right: 30px;
    line-height: 1;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 24px;
    color: #1A3F8A;
    margin-bottom: 15px;
}

.benefit-content p {
    font-size: 16px;
    color: #444;
    margin: 0;
}

.benefit-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    height: calc(100% + 35px);
    width: 2px;
    background-color: #e0e0e0;
}

.benefit-item:last-child:before {
    display: none;
}

.team-section {
    padding: 80px 0 120px;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    height: 220px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px 20px;
}

.team-info h3 {
    font-size: 20px;
    color: #1A3F8A;
    margin: 0 0 5px 0;
}

.team-role {
    color: #4599C9;
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 15px 0;
}

.team-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
}

.team-social a:hover {
    background-color: #e0e0e0;
}

.team-social img {
    width: 18px;
    height: 18px;
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.value-card.animate {
    animation: fadeInUp 0.6s ease forwards;
}


.acerca-page {
    position: relative;
    z-index: 5;
}


@media (max-width: 992px) {
    .intro-section {
        flex-direction: column;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-vision-section {
        flex-direction: column;
    }
    
    .hero-section h1 {
        font-size: 42px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 250px;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .intro-content h2 {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .benefit-number {
        font-size: 36px;
    }
    
    .team-grid {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section h1 {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .intro-section,
    .mission-vision-section,
    .values-section,
    .benefits-section,
    .team-section {
        padding: 50px 0;
    }
    
    .benefit-item {
        flex-direction: column;
    }
    
    .benefit-number {
        margin-bottom: 15px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-image {
        height: 200px;
    }
}
