   
        :root {
            --primary-color: #1a365d;
            --secondary-color: #2b77ad;
            --accent-color: #f6ad55;
            --light-blue: #e6fffa;
            --warm-white: #fffffe;
            --soft-gray: #f7fafc;
            --text-dark: #2d3748;
            --text-light: #718096;
            --emerald: #38a169;
        }

        p{
            font-size: 1.25rem;
            font-weight: 300;
        }

        body {
            font-family: 'Source Sans Pro', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }

        /* Page Hero */
        .page-hero {
            background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(43, 119, 173, 0.8)),
                        url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 80px;
        }

        .page-hero h1 {
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .page-hero p {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 600px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        /* About Content */
        .about-content {
            padding: 5rem 0;
        }

        .ptxt{
            text-align: left;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 2rem;
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 15px 40px rgba(26, 54, 93, 0.1);
            transition: all 0.4s ease;
            border: 1px solid rgba(246, 173, 85, 0.2);
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(26, 54, 93, 0.15);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, var(--accent-color), #fbb03b);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 2rem;
        }

        .stats-section {
            background: var(--soft-gray);
            padding: 4rem 0;
        }

        .stat-card {
            text-align: center;
            padding: 2rem 1rem;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-light);
            font-weight: 600;
        }

        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            height: 100%;
            width: 2px;
            background: var(--accent-color);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            width: 50%;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
            padding-right: 2rem;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
            padding-left: 2rem;
        }

        .timeline-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }

        .timeline-date {
            background: var(--primary-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1rem;
        }

        /* WhatsApp Button */
        .whatsapp-fixed {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            background: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-fixed:hover {
            color: white;
            transform: scale(1.1);
        }

        @keyframes pulse {
            0% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1); }
            100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
        }

        /* Footer Styles */
        .footer-traditional {
            background: var(--text-dark);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }

        .footer-traditional h5 {
            color: var(--accent-color);
            margin-bottom: 1rem;
            font-family: 'Playfair Display', serif;
        }

        .footer-traditional a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-traditional a:hover {
            color: var(--accent-color);
        }

        .newsletter-traditional {
            background: rgba(246, 173, 85, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(246, 173, 85, 0.2);
        }

        .newsletter-traditional .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            border-radius: 8px;
        }

        .newsletter-traditional .form-control:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent-color);
            color: white;
            box-shadow: 0 0 0 0.2rem rgba(246, 173, 85, 0.25);
        }

        .newsletter-traditional .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-hero {
                margin-top: 0;
                height: 50vh;
            }
            
            .page-hero h1 {
                font-size: 2.5rem;
            }
            
            .timeline::before {
                left: 20px;
            }
            
            .timeline-item {
                width: 100%;
                left: 0 !important;
                padding-left: 3rem !important;
                padding-right: 0 !important;
            }
        }
    