/* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #fef9f7;
            color: #333;
            line-height: 1.6;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        /* Hero Section - Professional & Refined */
        .about-hero {
            text-align: center;
            padding: 60px 40px;
            background: linear-gradient(135deg, #8b0000 0%, #9a0202 100%);
            color: #fff;
            border-radius: 16px;
            margin-bottom: 50px;
            box-shadow: 0 8px 30px rgba(139, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.03"><path d="M0,0 L100,0 L100,100 Z" fill="white"/></svg>');
            background-size: cover;
        }

        .about-hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: -0.3px;
            position: relative;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-description {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 35px;
            opacity: 0.9;
            line-height: 1.7;
            position: relative;
        }

        .cta-button {
            display: inline-block;
            background-color: #fff;
            color: #8b0000;
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
            border: 2px solid transparent;
            position: relative;
            z-index: 1;
            letter-spacing: 0.3px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
            background-color: #f8f8f8;
        }

        /* Content Sections */
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            color: #8b0000;
            margin: 60px 0 40px;
            position: relative;
            font-weight: 600;
            letter-spacing: -0.2px;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #8b0000, #9a0202);
            margin: 15px auto;
            border-radius: 2px;
        }

        .section-content {
            background-color: #fff;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            margin-bottom: 40px;
            font-size: 1.05rem;
            line-height: 1.7;
            border: 1px solid #f0f0f0;
        }

        .highlight-box {
            background: linear-gradient(to right, #fff8f8, #fff5f5);
            border-left: 4px solid #8b0000;
            padding: 25px 30px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            position: relative;
            font-style: italic;
            color: #555;
        }

        .section-content ul {
            padding-left: 25px;
            margin: 20px 0;
        }

        .section-content li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 8px;
            line-height: 1.6;
        }

        .section-content li strong {
            color: #8b0000;
        }

        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .feature-card {
            background: #fff;
            padding: 35px 25px;
            border-radius: 14px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #8b0000, #9a0202);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(139, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 2.8rem;
            color: #8b0000;
            margin-bottom: 20px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-card h3 {
            color: #8b0000;
            margin-bottom: 15px;
            font-size: 1.4rem;
            font-weight: 600;
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
            font-size: 0.98rem;
        }

        /* Statistics Section */
        .stats-section {
            background: linear-gradient(135deg, #8b0000 0%, #9a0202 100%);
            color: #fff;
            padding: 60px 30px;
            border-radius: 16px;
            margin: 60px 0;
            text-align: center;
            box-shadow: 0 10px 30px rgba(139, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.03"><path d="M0,0 L100,0 L100,100 Z" fill="white"/></svg>');
            background-size: cover;
        }

        .stats-title {
            font-size: 2rem;
            margin-bottom: 40px;
            font-weight: 600;
            position: relative;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            position: relative;
        }

        .stat-item {
            padding: 15px;
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 500;
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .team-member {
            text-align: center;
            padding: 25px 20px;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .team-member:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(139, 0, 0, 0.08);
        }

        .member-avatar {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #8b0000, #9a0202);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 2.2rem;
            font-weight: 600;
            box-shadow: 0 6px 20px rgba(139, 0, 0, 0.2);
            border: 4px solid #fff;
        }

        .member-name {
            font-weight: 600;
            color: #333;
            margin-bottom: 6px;
            font-size: 1.2rem;
        }

        .member-role {
            color: #8b0000;
            font-weight: 500;
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .member-desc {
            color: #666;
            line-height: 1.5;
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact-section {
            text-align: center;
            padding: 60px 30px;
            background: linear-gradient(135deg, #8b0000 0%, #9a0202 100%);
            color: #fff;
            border-radius: 16px;
            margin: 60px 0 30px;
            box-shadow: 0 10px 30px rgba(139, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.03"><path d="M0,0 L100,0 L100,100 Z" fill="white"/></svg>');
            background-size: cover;
        }

        .contact-section h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            font-weight: 600;
            position: relative;
        }

        .contact-section p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
            line-height: 1.7;
            position: relative;
        }

        .contact-info {
            font-size: 1.2rem;
            margin: 20px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            position: relative;
        }

        .contact-info i {
            background: #fff;
            color: #8b0000;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .contact-cta {
            margin-top: 35px;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-hero {
                padding: 50px 30px;
            }
            
            .about-hero h1 {
                font-size: 2.4rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
                margin: 50px 0 35px;
            }
            
            .section-content {
                padding: 35px;
            }
            
            .stats-title {
                font-size: 1.8rem;
            }
            
            .stat-number {
                font-size: 2.4rem;
            }
            
            .contact-section h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .about-hero {
                padding: 45px 25px;
                border-radius: 12px;
            }
            
            .about-hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 20px;
            }
            
            .hero-description {
                font-size: 1rem;
                margin-bottom: 25px;
            }
            
            .cta-button {
                padding: 12px 35px;
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin: 45px 0 30px;
            }
            
            .section-content {
                padding: 30px;
                border-radius: 12px;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
            
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .stats-title {
                font-size: 1.7rem;
                margin-bottom: 35px;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            .contact-section h2 {
                font-size: 1.8rem;
            }
            
            .contact-info {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .about-container {
                padding: 20px 15px;
            }
            
            .about-hero {
                padding: 40px 20px;
                border-radius: 10px;
            }
            
            .about-hero h1 {
                font-size: 1.9rem;
                margin-bottom: 15px;
            }
            
            .hero-subtitle {
                font-size: 1.05rem;
                margin-bottom: 18px;
            }
            
            .hero-description {
                font-size: 0.95rem;
                margin-bottom: 22px;
            }
            
            .cta-button {
                padding: 11px 30px;
                font-size: 0.95rem;
            }
            
            .section-title {
                font-size: 1.6rem;
                margin: 40px 0 25px;
            }
            
            .section-content {
                padding: 25px 20px;
                border-radius: 10px;
            }
            
            .highlight-box {
                padding: 20px 25px;
                margin: 25px 0;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .feature-card {
                padding: 25px 20px;
            }
            
            .feature-icon {
                font-size: 2.5rem;
                height: 60px;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .member-avatar {
                width: 100px;
                height: 100px;
                font-size: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .stats-section {
                padding: 45px 20px;
                border-radius: 12px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .stat-label {
                font-size: 1rem;
            }
            
            .contact-section {
                padding: 45px 20px;
                border-radius: 12px;
            }
            
            .contact-section h2 {
                font-size: 1.7rem;
            }
            
            .contact-section p {
                font-size: 1rem;
            }
            
            .contact-info {
                font-size: 1rem;
                flex-direction: column;
                gap: 10px;
            }
            
            .contact-info i {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }