
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600&display=swap');
        
        :root {
            --primary-color: #1a1a1a;
            --secondary-color: #e4626a;
            --accent-color: #9f9fe7;
            --text-light: #6b7280;
            --bg-light: #f9fafb;
            --border-color: #e5e7eb;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--primary-color);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        /* Typography */
        .display-1 {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
        }
        
        .lead {
            font-size: 1.25rem;
            font-weight: 300;
            color: var(--text-light);
        }
        
        /* Navbar */
        .navbar {
            background: white;
            border-bottom: 1px solid var(--border-color);
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color) !important;
        }
        
        .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        
        /* Hero Section */
        .hero-section {
            padding: 120px 0 80px;
            background: white;
        }
        
        .hero-content {
            max-width: 600px;
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image img {
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }
        
        /* Buttons */
        .btn-minimal {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 12px 35px;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-minimal:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-primary-minimal {
            background: var(--secondary-color);
            border: none;
            color: white;
            padding: 12px 35px;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-primary-minimal:hover {
            background: #e4626a;
            transform: translateY(-2px);
            color: white;
        }
        
        /* Section Styling */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 60px;
        }
        
        /* Service Cards */
        .service-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 40px 30px;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .service-card:hover {
            border-color: var(--secondary-color);
            box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
            transform: translateY(-5px);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--bg-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            background: var(--secondary-color);
            color: white;
        }
        
        /* Feature Boxes */
        .feature-box {
            text-align: center;
            padding: 40px 20px;
        }
        
        .feature-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .feature-label {
            font-size: 1.1rem;
            color: var(--text-light);
        }
        
        /* Testimonials */
        .testimonial-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 40px;
            margin: 20px;
            position: relative;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 30px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        /* FAQ */
        .faq-item {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .faq-button {
            background: white;
            border: none;
            padding: 25px;
            width: 100%;
            text-align: left;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-button:hover {
            background: var(--bg-light);
        }
        
        .faq-button i {
            transition: transform 0.3s ease;
        }
        
        .faq-button[aria-expanded="true"] i {
            transform: rotate(180deg);
        }
        
        /* Contact Form */
        .contact-form {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 50px;
        }
        
        .form-control, .form-select {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 12px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.1);
        }
        
        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--primary-color);
        }
        
        /* Footer */
        footer {
            background: var(--primary-color);
            color: white;
            padding: 60px 0 30px;
        }
        
        footer h5 {
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }
        
        footer a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: white;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        /* Modals */
        .modal-content {
            border: none;
            border-radius: 10px;
        }
        
        .modal-header {
            border-bottom: 1px solid var(--border-color);
            padding: 30px;
        }
        
        .modal-body {
            padding: 30px;
        }
        
        /* Alert */
        .alert-custom {
            position: fixed;
            top: 100px;
            right: 20px;
            z-index: 9999;
            border-radius: 10px;
            border: none;
            animation: slideIn 0.5s ease;
        }
        
        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        /* Service Category Headers */
        .service-category {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .service-category h3 {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .service-category p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }
    