    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Alexandria', sans-serif;
            background-color: #F9F5EB;
            color: #253C78;
            line-height: 1.8;
        }

        header {
            background: linear-gradient(135deg, #253C78 0%, #617FAB 100%);
            color: white;
            padding: 2.5rem 1rem;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .logo {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }

        .tagline {
            font-size: 1.1rem;
            opacity: 0.95;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        nav {
            background-color: white;
            padding: 1rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        nav a {
            color: #253C78;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 1.05rem;
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }

        nav a:hover, nav a.active {
            color: #C7A776;
            background-color: #F9F5EB;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 1.5rem;
        }

        .page-title {
            color: #253C78;
            font-size: 2.8rem;
            margin-bottom: 2.5rem;
            text-align: center;
            font-weight: 700;
        }

        .content-section {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(37, 60, 120, 0.1);
            margin-bottom: 2rem;
        }

        .content-section h2 {
            color: #253C78;
            font-size: 1.8rem;
            margin: 2rem 0 1rem 0;
            font-weight: 700;
            border-left: 4px solid #C7A776;
            padding-left: 1rem;
        }

        .content-section h3 {
            color: #617FAB;
            font-size: 1.4rem;
            margin: 1.5rem 0 1rem 0;
            font-weight: 600;
        }

        .content-section p, .content-section li {
            margin-bottom: 1rem;
            color: #253C78;
            font-size: 1.05rem;
        }

        .content-section ul {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .content-section li {
            margin-bottom: 0.8rem;
        }

        footer {
            background-color: #253C78;
            color: white;
            text-align: center;
            padding: 2.5rem 1rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info {
            margin: 1rem 0;
            font-size: 1.05rem;
        }

        .highlight {
            background-color: #EED59E;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            font-weight: 600;
            color: #253C78;
        }

        .hero-section {
            text-align: center;
            padding: 4rem 1rem;
            background: linear-gradient(135deg, rgba(37, 60, 120, 0.05) 0%, rgba(97, 127, 171, 0.05) 100%);
            border-radius: 20px;
            margin-bottom: 3rem;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            color: #253C78;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .hero-section p {
            font-size: 1.4rem;
            color: #617FAB;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #C7A776 0%, #EED59E 100%);
            color: #253C78;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(199, 167, 118, 0.3);
            margin: 0.5rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(199, 167, 118, 0.5);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(37, 60, 120, 0.1);
            transition: all 0.3s;
            border-top: 4px solid #C7A776;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(199, 167, 118, 0.3);
        }

        .service-card h3 {
            color: #253C78;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .service-card p {
            color: #617FAB;
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .section-title {
            text-align: center;
            color: #253C78;
            font-size: 2.5rem;
            font-weight: 700;
            margin: 4rem 0 2rem 0;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #C7A776, #EED59E);
            border-radius: 2px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
        }

        .team-member {
            text-align: center;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(37, 60, 120, 0.1);
            transition: all 0.3s;
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(199, 167, 118, 0.25);
        }

        .team-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: linear-gradient(135deg, #617FAB, #C7A776);
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
        }

        .team-member h3 {
            color: #253C78;
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .team-member p {
            color: #617FAB;
            font-size: 1rem;
        }

        .testimonial-slider {
            max-width: 900px;
            margin: 3rem auto;
        }

        .testimonial {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(37, 60, 120, 0.1);
            margin-bottom: 2rem;
            position: relative;
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 6rem;
            color: #EED59E;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-text {
            color: #617FAB;
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #C7A776, #EED59E);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .testimonial-info h4 {
            color: #253C78;
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0;
        }

        .testimonial-info p {
            color: #617FAB;
            font-size: 0.95rem;
            margin: 0;
        }

        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
            text-align: center;
        }

        .stat-box {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(37, 60, 120, 0.1);
            transition: all 0.3s;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(199, 167, 118, 0.25);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #C7A776;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #617FAB;
            font-size: 1.1rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 1.8rem;
            }

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

            .hero-section h1 {
                font-size: 2.2rem;
            }

            .hero-section p {
                font-size: 1.2rem;
            }

            nav ul {
                gap: 0.8rem;
            }

            nav a {
                font-size: 0.95rem;
                padding: 0.4rem 0.8rem;
            }

            .content-section {
                padding: 1.5rem;
            }

            .services-grid, .team-grid {
                grid-template-columns: 1fr;
            }

            .testimonial {
                padding: 2rem;
            }
        }



        .last-updated {
            text-align: center;
            color: #617FAB;
            font-size: 0.9rem;
            margin-top: 2rem;
            font-style: italic;
        }
        footer {
            background: linear-gradient(135deg, #253C78 0%, #1a2d5a 100%);
            color: white;
            padding: 3rem 1rem 1rem;
            margin-top: 4rem;

        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
           
        }

        .footer-section h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #EED59E;
            font-weight: 700;
        }

        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #C7A776;
            font-weight: 600;
        }

        .footer-section p {
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.8rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
            color: rgba(255, 255, 255, 0.9);
            transition: all 0.3s;
            cursor: pointer;
        }

        .footer-links li:hover {
            color: #EED59E;
            transform: translateX(-5px);
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: #EED59E;
        }

        .contact-info {
            margin: 1rem 0;
        }

        .contact-info p {
            margin-bottom: 0.8rem;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            justify-content: flex-end;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1.5rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-bottom p {
            margin: 0.5rem 0;
        }
