  
  /* ===== MODERN ABOUT WRAPPER ===== */
                .about-modern-wrapper {
                    margin-top: 2rem;
                    max-width: 1200px;
                    margin-left: auto;
                    margin-right: auto;
                    padding: 0 15px;
                }

                .about-modern-grid {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 2rem;
                    justify-content: center;
                    align-items: stretch;
                }

                /* ===== CARD STYLE ===== */
                .about-modern-card {
                    background: #ffffff;
                    border-radius: 20px;
                    padding: 2.2rem 2rem;
                    box-shadow: 0 10px 40px rgba(37, 0, 167, 0.10);
                    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                    border-top: 6px solid transparent;
                    position: relative;
                    overflow: hidden;
                    display: flex;
                    flex-direction: column;
                    height: 100%;
                    min-height: 320px;
                    width: 100%;
                }

                .about-modern-card::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);
                    pointer-events: none;
                }

                .about-modern-card:hover {
                    transform: translateY(-8px);
                    box-shadow: 0 20px 60px rgba(37, 0, 167, 0.18);
                }

                /* ===== VISION CARD ===== */
                .vision-card {
                    border-top-color: #2500a7;
                }
                .vision-card .card-header-icon {
                    background: linear-gradient(135deg, #2500a7, #4a2db7);
                }
                .vision-card .list-icon {
                    color: #2500a7;
                }
                .vision-card .card-title::after {
                    background: #2500a7;
                }

                /* ===== MISSION CARD ===== */
                .mission-card {
                    border-top-color: #FF5E00;
                }
                .mission-card .card-header-icon {
                    background: linear-gradient(135deg, #FF5E00, #ff8c42);
                }
                .mission-card .list-icon {
                    color: #FF5E00;
                }
                .mission-card .card-title::after {
                    background: #FF5E00;
                }

                /* ===== MOTTO CARD ===== */
                .motto-card {
                    border-top-color: #2500a7;
                }
                .motto-card .card-header-icon {
                    background: linear-gradient(135deg, #2500a7, #4a2db7);
                }
                .motto-card .card-title::after {
                    background: #2500a7;
                }

                /* ===== CARD HEADER ICON ===== */
                .card-header-icon {
                    width: 58px;
                    height: 58px;
                    border-radius: 16px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-bottom: 1.2rem;
                    flex-shrink: 0;
                }
                .card-header-icon i {
                    font-size: 1.8rem;
                    color: #ffffff;
                }

                /* ===== CARD TITLE ===== */
                .card-title {
                    font-size: 1.15rem;
                    font-weight: 700;
                    color: #2500a7;
                    margin-bottom: 1.2rem;
                    letter-spacing: 0.02em;
                    position: relative;
                }
                .card-title::after {
                    content: '';
                    display: block;
                    width: 45px;
                    height: 4px;
                    margin-top: 10px;
                    border-radius: 3px;
                }

                /* ===== POINT LIST ===== */
                .about-point_list {
                    list-style: none;
                    margin: 0;
                    padding: 0;
                    flex: 1;
                }
                .about-point_list li {
                    display: flex;
                    align-items: flex-start;
                    gap: 12px;
                    margin-bottom: 0.85rem;
                    font-size: 0.92rem;
                    line-height: 1.6;
                    color: #374151;
                }
                .list-icon {
                    flex-shrink: 0;
                    margin-top: 3px;
                    font-size: 0.9rem;
                    width: 20px;
                    text-align: center;
                }

                /* ===== MOTTO BLOCKQUOTE ===== */
                .motto-blockquote {
                    margin: 0;
                    padding: 0;
                    border-left: none;
                    flex: 1;
                    display: flex;
                    align-items: center;
                }
                .motto-blockquote p {
                    font-size: 0.98rem;
                    line-height: 1.7;
                    color: #2500a7;
                    font-weight: 500;
                    font-style: italic;
                    margin: 0;
                    padding: 0.5rem 0;
                    position: relative;
                }
                .motto-blockquote p::before {
                    content: '"';
                    font-size: 3rem;
                    color: #FF5E00;
                    opacity: 0.2;
                    position: absolute;
                    top: -18px;
                    left: -6px;
                    font-family: Georgia, serif;
                }

                /* ===== RESPONSIVE ===== */
                @media (max-width: 992px) {
                    .about-modern-grid {
                        grid-template-columns: repeat(2, 1fr);
                        gap: 1.5rem;
                    }
                    .about-modern-card {
                        min-height: auto;
                        padding: 1.8rem 1.5rem;
                    }
                    .about-modern-wrapper {
                        max-width: 100%;
                    }
                }

                @media (max-width: 576px) {
                    .about-modern-grid {
                        grid-template-columns: 1fr;
                        gap: 1.2rem;
                    }
                    .about-modern-card {
                        padding: 1.5rem 1.2rem;
                    }
                    .title-area.text-center {
                        text-align: center !important;
                    }
                }