.gpm-about-principal-container {
    width: 100%;
    height: auto;
}

.about-principal-container-main {
    width: 90%;
    margin: auto;
}
.about-principal-container-main h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.about-principal-container-main .gpm-heading-main {
    color: #c21717;
}

.gpm-about-principal-header {
    text-align: center;
    padding: 50px 20px;
    background: #c21717;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.gpm-about-principal-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/api/placeholder/1200/300") center/cover;
    opacity: 0.1;
    z-index: 1;
}

.gpm-about-principal-header h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 2.5rem);
    position: relative;
    z-index: 2;
}

.gpm-about-principal-header p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-top: 10px;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.gpm-about-principal-section {
    padding: 30px 20px;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.gpm-about-principal-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.gpm-about-principal-section:last-child {
    border-bottom: none;
}

.gpm-about-principal-section h3 {
    color: #1e3a8a;
    font-size: 25px;
}

.gpm-about-principal-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.gpm-about-principal-image {
    min-width: 280px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gpm-about-principal-image img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    border: 8px solid white;
    transition: transform 0.3s ease;
}

.gpm-about-principal-image img:hover {
    transform: scale(1.02);
}

.gpm-about-principal-text {
    flex: 2;
    text-align: justify;
}

.gpm-about-principal-text p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: black;
}

.gpm-about-principal-message {
    margin-top: 20px;
    padding: 25px;
    background-color: #f3f4f6;
    border-radius: 12px;
    position: relative;
    border-left: 5px solid #3b82f6;
}

.gpm-about-principal-message p {
    font-style: italic;
    position: relative;
    z-index: 1;
}

.achievement-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.achievement-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.achievement-card h3 {
    color: #1e3a8a;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: #3b82f6;
}

@media (max-width: 768px) {
    .gpm-about-principal-content {
        flex-direction: column;
    }

    .gpm-about-principal-image {
        margin: 0 auto;
    }
    .gpm-about-principal-image img{
        height: 200px;
        width: 200px;
    }

    .gpm-about-principal-section {
        padding: 20px 15px;
    }

    .achievement-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-principal-container-main {
        width: 95%;
    }

    .gpm-about-principal-header {
        padding: 30px 15px;
    }

    .gpm-about-principal-message {
        padding: 15px;
    }
}