
        /* Page Header */
        .page-header {
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            align-content: center;
            position: relative;
            height: 7rem;
        }

        .page-title {
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0;
            position: relative;
            z-index: 2;
        }

        /* About Content Section */
        .about-content {
            padding: 5rem 0;
            position: relative;
        }

        /* About Cards */
        .about-card {
            background: var(--card-gradient);
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(95, 87, 55, 0.08);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            animation: fadeInUp 0.6s ease forwards;
        }

        .about-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .about-card:nth-child(3) {
            animation-delay: 0.4s;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.6s ease;
        }

        .about-card:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .about-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
        }

        /* Card Header */
        .about-card-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid rgba(95, 87, 55, 0.1);
        }

        .about-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(95, 87, 55, 0.2);
            transition: all 0.3s ease;
        }

        .about-card:hover .about-icon {
            transform: rotate(5deg) scale(1.1);
        }

        .about-icon i {
            color: white;
            font-size: 2rem;
        }

        .about-card-header h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
        }

        /* Card Content */
        .about-card p {
            color: var(--text-color);
            font-size: 1.1rem;
            line-height: 2;
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .about-card p:last-child {
            margin-bottom: 0;
        }

        /* Vision & Mission Section */
        .vision-mission-section {
            background: white;
            padding: 5rem 0;
            position: relative;
        }

        .vision-mission-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient);
            opacity: 0.3;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .section-title p {
            color: #6c757d;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }

        /* Feature Cards */
        .feature-card {
            background: var(--card-gradient);
            border-radius: 20px;
            padding: 2.5rem;
            height: 100%;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(95, 87, 55, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .feature-card:hover::before {
            opacity: 1;
            top: -25%;
            right: -25%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-medium);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 20px rgba(95, 87, 55, 0.2);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .feature-icon i {
            color: white;
            font-size: 2.5rem;
        }

        .feature-card h4 {
            color: var(--primary-color);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: var(--text-color);
            font-size: 1.05rem;
            line-height: 1.9;
            margin: 0;
        }

        /* Stats Section */
        .stats-section {
            padding: 4rem 0;
            background: var(--gradient);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .stat-item i {
            color: var(--gold-accent);
            font-size: 3rem;
            margin-bottom: 1rem;
            animation: bounce 2s infinite;
        }

        .stat-number {
            color: white;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient);
            color: white;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-soft);
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(95, 87, 55, 0.3);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .page-title {
                font-size: 2.5rem;
            }

            .about-card {
                padding: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .page-header {
                height: 7rem;
                margin-top: 60px;
            }

            .page-title {
                font-size: 2rem;
            }

            .about-card {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .about-card-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

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

            .about-icon i {
                font-size: 1.5rem;
            }

            .about-card-header h3 {
                font-size: 1.5rem;
            }

            .about-card p {
                font-size: 1rem;
            }

            .section-title h2 {
                font-size: 1.75rem;
            }

            .feature-card {
                margin-bottom: 2rem;
            }

            .stat-item i {
                font-size: 2.5rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .scroll-to-top {
                bottom: 20px;
                left: 20px;
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 576px) {
            .page-header {
                height: 7rem;
            }

            .page-title {
                font-size: 1.75rem;
            }

            .about-content {
                padding: 3rem 0;
            }

            .vision-mission-section {
                padding: 3rem 0;
            }

            .stats-section {
                padding: 3rem 0;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 1rem;
            }
        }
