
    /* Hero Slider Styles */
    .hero-slider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .hero-slider .swiper-slide {
        overflow: hidden;
    }

    .hero-slider .hero-slide-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        color: rgba(255, 255, 255, 0.8);
        background: rgba(0, 0, 0, 0.3);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .hero-slider .swiper-button-next:hover,
    .hero-slider .swiper-button-prev:hover {
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
    }

    .hero-slider .swiper-button-next::after,
    .hero-slider .swiper-button-prev::after {
        font-size: 20px;
        font-weight: bold;
    }

    .hero-slider .swiper-pagination {
        bottom: 20px;
    }

    .hero-slider .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.6);
        opacity: 1;
        transition: all 0.3s ease;
    }

    .hero-slider .swiper-pagination-bullet-active {
        background: #fff;
        transform: scale(1.2);
    }

    .hero .container {
        position: relative;
        z-index: 1;
    }

    @media (max-width: 768px) {
        .hero-slider .swiper-button-next,
        .hero-slider .swiper-button-prev {
            width: 40px;
            height: 40px;
        }

        .hero-slider .swiper-button-next::after,
        .hero-slider .swiper-button-prev::after {
            font-size: 16px;
        }
    }

    /* Gallery Fixed Size Styles */
    .gallery-item-wrapper {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery-item-wrapper:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .gallery-img-container {
        position: relative;
        width: 100%;
        height: 220px;
        overflow: hidden;
    }

    .gallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.4s ease;
    }

    .gallery-item-wrapper:hover .gallery-img {
        transform: scale(1.1);
    }

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-item-wrapper:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay i {
        color: #fff;
        font-size: 2rem;
        transform: scale(0.8);
        transition: transform 0.3s ease;
    }

    .gallery-item-wrapper:hover .gallery-overlay i {
        transform: scale(1);
    }

    @media (max-width: 991px) {
        .gallery-img-container {
            height: 200px;
        }
    }

    @media (max-width: 576px) {
        .gallery-img-container {
            height: 180px;
        }
    }

    /* FAQ Accordion Styles */
    .faq-accordion {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .faq-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-card:hover {
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
    }

    .faq-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 25px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .faq-card.active .faq-header {
        background: linear-gradient(135deg, #1977cc 0%, #2e86de 100%);
    }

    .faq-question {
        display: flex;
        align-items: center;
        gap: 15px;
        flex: 1;
    }

    .faq-number {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #1977cc 0%, #2e86de 100%);
        color: #fff;
        border-radius: 10px;
        font-weight: 700;
        font-size: 14px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .faq-card.active .faq-number {
        background: rgba(255, 255, 255, 0.2);
    }

    .faq-header h3 {
        margin: 0;
        font-size: 17px;
        font-weight: 600;
        color: #2c3e50;
        line-height: 1.4;
        transition: color 0.3s ease;
    }

    .faq-card.active .faq-header h3 {
        color: #fff;
    }

    .faq-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: #f0f4f8;
        border-radius: 50%;
        transition: all 0.3s ease;
        flex-shrink: 0;
        margin-left: 15px;
    }

    .faq-icon i {
        font-size: 18px;
        color: #1977cc;
        transition: all 0.3s ease;
    }

    .faq-card.active .faq-icon {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(45deg);
    }

    .faq-card.active .faq-icon i {
        color: #fff;
    }

    .faq-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .faq-card.active .faq-body {
        max-height: 500px;
    }

    .faq-answer {
        padding: 0 25px 25px 80px;
    }

    .faq-answer p {
        margin: 0;
        color: #5a6c7d;
        font-size: 15px;
        line-height: 1.7;
    }

    @media (max-width: 768px) {
        .faq-header {
            padding: 16px 18px;
        }

        .faq-number {
            width: 35px;
            height: 35px;
            font-size: 13px;
        }

        .faq-header h3 {
            font-size: 15px;
        }

        .faq-answer {
            padding: 0 18px 20px 18px;
        }

        .faq-icon {
            width: 32px;
            height: 32px;
        }

        .faq-icon i {
            font-size: 16px;
        }
    }

    /* Services Section Styles */
    .service-card {
        background: #fff;
        border-radius: 16px;
        padding: 30px;
        height: 100%;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(135deg, #1977cc 0%, #2e86de 100%);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(25, 119, 204, 0.15);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-icon-wrapper {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #1977cc 0%, #2e86de 100%);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
    }

    .service-icon i {
        font-size: 32px;
        color: #fff;
    }

    .service-card:hover .service-icon {
        transform: rotateY(180deg);
    }

    .service-number {
        font-size: 48px;
        font-weight: 800;
        color: #f0f4f8;
        line-height: 1;
    }

    .service-content {
        flex: 1;
    }

    .service-content h3 {
        font-size: 20px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 12px;
        transition: color 0.3s ease;
    }

    .service-card:hover .service-content h3 {
        color: #1977cc;
    }

    .service-content p {
        color: #6c757d;
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .service-footer {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #f0f4f8;
    }

    .service-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #1977cc;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .service-link i {
        transition: transform 0.3s ease;
    }

    .service-link:hover {
        color: #145a8a;
    }

    .service-link:hover i {
        transform: translateX(5px);
    }

    /* Departments Section Styles */
    .department-tabs {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .department-tab {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 18px 20px;
        background: #fff;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .department-tab:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .department-tab.active {
        background: linear-gradient(135deg, #1977cc 0%, #2e86de 100%);
    }

    .department-tab .tab-icon {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #1977cc 0%, #2e86de 100%);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .department-tab.active .tab-icon {
        background: rgba(255, 255, 255, 0.2);
    }

    .department-tab .tab-icon i {
        font-size: 20px;
        color: #fff;
    }

    .department-tab .tab-info {
        flex: 1;
        min-width: 0;
    }

    .department-tab .tab-info h4 {
        font-size: 16px;
        font-weight: 600;
        color: #2c3e50;
        margin: 0 0 4px 0;
        transition: color 0.3s ease;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .department-tab.active .tab-info h4 {
        color: #fff;
    }

    .department-tab .tab-info span {
        font-size: 13px;
        color: #6c757d;
        transition: color 0.3s ease;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .department-tab.active .tab-info span {
        color: rgba(255, 255, 255, 0.8);
    }

    .department-tab .tab-arrow {
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }

    .department-tab .tab-arrow i {
        color: #fff;
        font-size: 18px;
    }

    .department-tab.active .tab-arrow {
        opacity: 1;
        transform: translateX(0);
    }

    .department-content-wrapper {
        position: relative;
        min-height: 450px;
    }

    .department-content {
        display: none;
        animation: fadeInUp 0.4s ease;
    }

    .department-content.active {
        display: block;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .department-card {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .department-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .department-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .department-card:hover .department-image img {
        transform: scale(1.05);
    }

    .department-image-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1977cc 0%, #2e86de 100%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .department-image-placeholder i {
        font-size: 80px;
        color: rgba(255, 255, 255, 0.3);
    }

    .department-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.95);
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        color: #1977cc;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .department-badge i {
        color: #ffc107;
    }

    .department-details {
        padding: 25px 30px 30px;
    }

    .department-header h3 {
        font-size: 24px;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 8px 0;
    }

    .department-subtitle {
        font-size: 15px;
        color: #1977cc;
        font-weight: 500;
        margin: 0 0 15px 0;
    }

    .department-description p {
        color: #6c757d;
        font-size: 15px;
        line-height: 1.7;
        margin: 0;
    }

    .department-features {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin: 20px 0;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        color: #2c3e50;
    }

    .feature-item i {
        color: #28a745;
        font-size: 16px;
    }

    .department-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #1977cc 0%, #2e86de 100%);
        color: #fff;
        padding: 12px 25px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(25, 119, 204, 0.3);
    }

    .department-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(25, 119, 204, 0.4);
        color: #fff;
    }

    .department-cta i {
        transition: transform 0.3s ease;
    }

    .department-cta:hover i {
        transform: translateX(5px);
    }

    @media (max-width: 991px) {
        .department-tabs {
            flex-direction: row;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .department-tab {
            flex: 1 1 calc(50% - 6px);
            min-width: 200px;
        }

        .department-content-wrapper {
            min-height: auto;
        }
    }

    @media (max-width: 576px) {
        .service-card {
            padding: 25px 20px;
        }

        .service-icon {
            width: 60px;
            height: 60px;
        }

        .service-icon i {
            font-size: 26px;
        }

        .service-number {
            font-size: 36px;
        }

        .department-tab {
            flex: 1 1 100%;
            padding: 15px;
        }

        .department-details {
            padding: 20px;
        }

        .department-header h3 {
            font-size: 20px;
        }

        .department-features {
            flex-direction: column;
            gap: 8px;
        }
    }

    /* Page Header Styles */
    .page-title {
        background: linear-gradient(135deg, rgba(25, 119, 204, 0.9) 0%, rgba(46, 134, 222, 0.9) 100%),
                    url('') center/cover no-repeat;
        padding: 140px 0 60px;
        position: relative;
        margin-bottom: 0;
    }

    .page-title h1 {
        color: #fff;
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .page-title .breadcrumbs {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 15px;
    }

    .page-title .breadcrumbs a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .page-title .breadcrumbs a:hover {
        color: #fff;
    }

    /* Welcome Section */
    .about-welcome {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .welcome-img-box {
        position: relative;
    }

    .welcome-img-box img {
        border-radius: 15px;
        box-shadow: 0 15px 50px rgba(0,0,0,0.1);
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .experience-badge {
        position: absolute;
        bottom: -25px;
        right: 20px;
        background: linear-gradient(135deg, #1977cc, #2e86de);
        color: #fff;
        padding: 20px 30px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(25, 119, 204, 0.3);
    }

    .experience-badge .number {
        font-size: 42px;
        font-weight: 800;
        display: block;
        line-height: 1;
    }

    .experience-badge .text {
        font-size: 14px;
        opacity: 0.9;
    }

    /* Vision Mission Cards */
    .vm-section {
        background: linear-gradient(135deg, #1977cc, #2e86de);
        padding: 80px 0;
    }

    .vm-box {
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 15px;
        padding: 35px;
        height: 100%;
        transition: all 0.3s ease;
    }

    .vm-box:hover {
        background: rgba(255,255,255,0.15);
        transform: translateY(-5px);
    }

    .vm-box .icon {
        width: 60px;
        height: 60px;
        background: rgba(255,255,255,0.2);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .vm-box .icon i {
        font-size: 28px;
        color: #fff;
    }

    .vm-box h3 {
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .vm-box p {
        color: rgba(255,255,255,0.9);
        font-size: 15px;
        line-height: 1.7;
        margin: 0;
    }

    /* Values Section */
    .values-section {
        padding: 80px 0;
        background: #fff;
    }

    .value-box {
        background: #fff;
        border-radius: 15px;
        padding: 30px 25px;
        text-align: center;
        box-shadow: 0 5px 25px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        height: 100%;
        border: 2px solid transparent;
    }

    .value-box:hover {
        transform: translateY(-8px);
        border-color: #1977cc;
        box-shadow: 0 15px 40px rgba(25, 119, 204, 0.15);
    }

    .value-box .icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, rgba(25, 119, 204, 0.1), rgba(46, 134, 222, 0.1));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        transition: all 0.3s ease;
    }

    .value-box:hover .icon {
        background: linear-gradient(135deg, #1977cc, #2e86de);
    }

    .value-box .icon i {
        font-size: 30px;
        color: #1977cc;
        transition: color 0.3s ease;
    }

    .value-box:hover .icon i {
        color: #fff;
    }

    .value-box h4 {
        font-size: 18px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .value-box p {
        color: #6c757d;
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
    }

    /* Story Section */
    .story-section {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .story-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .story-images .img-box {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .story-images .img-box img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .story-images .img-box:hover img {
        transform: scale(1.05);
    }

    .story-images .img-box.full {
        grid-column: span 2;
    }

    .story-images .img-box.full img {
        height: 220px;
    }

    /* About Details */
    .about-details {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    }

    .video-box {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    }

    .video-box img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .video-box .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
    }

    .video-box .play-btn i {
        font-size: 26px;
        color: #1977cc;
        margin-left: 4px;
    }

    .video-box .play-btn:hover {
        transform: translate(-50%, -50%) scale(1.1);
    }

    /* Stats */
    .stats-box {
        background: #fff;
        border-radius: 15px;
        padding: 35px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        margin-top: -50px;
        position: relative;
        z-index: 10;
    }

    .stat-item {
        text-align: center;
        padding: 15px;
    }

    .stat-item .number {
        font-size: 36px;
        font-weight: 800;
        color: #1977cc;
        line-height: 1;
        margin-bottom: 8px;
    }

    .stat-item .label {
        color: #6c757d;
        font-size: 14px;
        font-weight: 500;
    }

    /* Team Section */
    .team-section {
        padding: 100px 0 80px;
        background: #fff;
    }

    .team-card {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
    }

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    }

    .team-card .img-box {
        position: relative;
        height: 260px;
        overflow: hidden;
    }

    .team-card .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .team-card:hover .img-box img {
        transform: scale(1.05);
    }

    .team-card .social-links {
        position: absolute;
        bottom: 15px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 10px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .team-card:hover .social-links {
        opacity: 1;
        transform: translateY(0);
    }

    .team-card .social-links a {
        width: 35px;
        height: 35px;
        background: rgba(255,255,255,0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1977cc;
        transition: all 0.3s ease;
    }

    .team-card .social-links a:hover {
        background: #1977cc;
        color: #fff;
    }

    .team-card .info {
        padding: 20px;
        text-align: center;
    }

    .team-card .info h4 {
        font-size: 18px;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 5px 0;
    }

    .team-card .info span {
        color: #1977cc;
        font-size: 14px;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #1977cc, #2e86de);
        padding: 70px 0;
        text-align: center;
    }

    .cta-section h2 {
        color: #fff;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .cta-section p {
        color: rgba(255,255,255,0.9);
        font-size: 16px;
        max-width: 500px;
        margin: 0 auto 25px;
    }

    .cta-section .btn-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        color: #1977cc;
        padding: 14px 30px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .cta-section .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    }

    .cta-section .btn-cta i {
        transition: transform 0.3s ease;
    }

    .cta-section .btn-cta:hover i {
        transform: translateX(5px);
    }

    /* Section Title */
    .section-header {
        margin-bottom: 50px;
    }

    .section-header .badge-text {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, rgba(25, 119, 204, 0.1), rgba(46, 134, 222, 0.1));
        color: #1977cc;
        padding: 8px 18px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .section-header h2 {
        font-size: 32px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
    }

    .section-header p {
        color: #6c757d;
        font-size: 16px;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.7;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .page-title h1 {
            font-size: 32px;
        }

        .experience-badge {
            position: relative;
            bottom: 0;
            right: 0;
            display: inline-block;
            margin-top: 20px;
        }

        .section-header h2 {
            font-size: 26px;
        }
    }

    @media (max-width: 768px) {
        .page-title {
            padding: 120px 0 50px;
        }

        .page-title h1 {
            font-size: 26px;
        }

        .about-welcome,
        .values-section,
        .story-section,
        .about-details,
        .team-section {
            padding: 60px 0;
        }

        .vm-section {
            padding: 60px 0;
        }

        .story-images {
            grid-template-columns: 1fr;
        }

        .story-images .img-box.full {
            grid-column: span 1;
        }
    }