
        :root {
            --primary-blue: #4b0082;
            --secondary-blue: #9370db;
            --accent-gold: #ff69b4;
            --dark-gray: #333333;
            --light-gray: #f5f5f5;
            --white: #ffffff;
        }

        body {
            font-family: 'Lato', sans-serif;
            color: var(--dark-gray);
            background-color: var(--white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Georgia', serif;
            font-weight: 700;
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--primary-blue);
            color: var(--white);
            font-size: 0.9rem;
        }

        /* Header */
        .main-header {
            background-color: var(--white);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-blue);
            font-family: 'Georgia', serif;
        }
        .nav-link {
            color: var(--dark-gray);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0 1rem;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-blue);
        }

        /* Hero */
        .hero {
            background: linear-gradient(rgba(75, 0, 130, 0.8), rgba(75, 0, 130, 0.8)), url('../img/hero.jpg') center/cover;
            color: var(--white);
            padding: 150px 0 100px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 300;
            letter-spacing: 2px;
        }
        .hero p {
            font-size: 1.3rem;
            font-style: italic;
            margin-bottom: 2rem;
        }
        .btn-primary-custom {
            background-color: var(--secondary-blue);
            color: var(--white);
            padding: 12px 35px;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: var(--primary-blue);
            transform: translateY(-2px);
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            padding: 12px 35px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-outline-custom:hover {
            background-color: var(--white);
            color: var(--primary-blue);
        }

        /* Sections */
        .section {
            padding: 80px 0;
        }
        .section-title {
            font-size: 2.5rem;
            color: var(--primary-blue);
            text-align: center;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 1rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-gold);
        }
        .section-subtitle {
            text-align: center;
            color: #666;
            font-style: italic;
            margin-bottom: 3rem;
        }

        /* About */
        .about-content {
            background-color: var(--white);
            padding: 40px;
            border-left: 4px solid var(--accent-gold);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-box {
            text-align: center;
            padding: 30px;
            background-color: var(--light-gray);
            border-radius: 5px;
            transition: transform 0.3s;
        }
        .stats-box:hover {
            transform: translateY(-5px);
        }
        .stats-number {
            font-size: 2.5rem;
            color: var(--secondary-blue);
            font-weight: bold;
            font-family: 'Georgia', serif;
        }

        /* Why Choose Us */
        .feature-item {
            text-align: center;
            padding: 30px;
            background-color: var(--white);
            border: 1px solid #e0e0e0;
            transition: all 0.3s;
        }
        .feature-item:hover {
            background-color: var(--primary-blue);
            color: var(--white);
        }
        .feature-item:hover .feature-icon {
            color: var(--accent-gold);
        }
        .feature-icon {
            font-size: 3rem;
            color: var(--secondary-blue);
            margin-bottom: 20px;
            transition: color 0.3s;
        }

        /* Services */
        .service-category {
            margin-bottom: 4rem;
        }
        .category-title {
            color: var(--primary-blue);
            font-size: 1.8rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-gold);
        }
        .service-item {
            background-color: var(--white);
            padding: 25px;
            margin-bottom: 20px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .service-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background-color: var(--secondary-blue);
            transform: translateX(-100%);
            transition: transform 0.3s;
        }
        .service-item:hover::before {
            transform: translateX(0);
        }
        .service-item:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transform: translateX(5px);
        }
        .service-icon {
            color: var(--accent-gold);
            font-size: 2rem;
            margin-bottom: 15px;
        }

        /* Testimonials */
        .testimonial-block {
            background-color: var(--white);
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid #e0e0e0;
            position: relative;
        }
        .quote-icon {
            font-size: 3rem;
            color: var(--accent-gold);
            opacity: 0.3;
            position: absolute;
            top: 20px;
            right: 20px;
        }
        .testimonial-text {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
        }
        .client-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            border: 3px solid var(--accent-gold);
        }

        /* FAQ */
        .faq-item {
            background-color: var(--white);
            margin-bottom: 15px;
            border: 1px solid #e0e0e0;
        }
        .faq-question {
            padding: 20px;
            background-color: var(--primary-blue);
            color: var(--white);
            cursor: pointer;
            transition: background-color 0.3s;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question:hover {
            background-color: var(--secondary-blue);
        }
        .faq-answer {
            padding: 20px;
            display: none;
            background-color: var(--light-gray);
        }
        .faq-answer.active {
            display: block;
        }

        /* Contact Form */
        .contact-wrapper {
            background-color: var(--white);
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .form-control, .form-select {
            border: 1px solid #ccc;
            border-radius: 0;
            padding: 12px;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--secondary-blue);
            box-shadow: none;
        }
        .btn-submit {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 12px 35px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            width: 100%;
            transition: background-color 0.3s;
        }
        .btn-submit:hover {
            background-color: var(--secondary-blue);
        }

        /* Footer */
        footer {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 50px 0 20px;
        }
        .footer-title {
            color: var(--accent-gold);
            font-size: 1.3rem;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--white);
        }

        /* Popups */
        .modal-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 2000;
        }
        .modal-content-custom {
            background-color: var(--white);
            margin: 50px auto;
            padding: 40px;
            max-width: 600px;
            position: relative;
        }
        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            cursor: pointer;
            color: #999;
        }
        .alert-success-custom {
            background-color: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
            display: none;
            border-left: 4px solid #28a745;
        }