* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8fafc;
        }

        /* Premium Container */
        .premium-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-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 1000 100" fill="white" opacity="0.1"><polygon points="0,100 1000,0 1000,100"/></svg>');
            background-size: cover;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            opacity: 0.9;
        }

        /* Breadcrumb */
        .breadcrumb-section {
            background: white;
            padding: 20px 0;
            border-bottom: 1px solid #e5e7eb;
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
        }

        .breadcrumb-nav a {
            color: #6b7280;
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb-nav a:hover {
            color: #667eea;
        }

        .breadcrumb-nav .active {
            color: #667eea;
            font-weight: 500;
        }

        /* Main Content */
        .content-section {
            padding: 80px 0;
        }

        .premium-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            align-items: start;
        }

        /* Service Card */
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border: 1px solid #e5e7eb;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
        }

        .service-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .service-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-tagline {
            font-size: 19px;
            color: #667eea;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .service-description {
            font-size: 19px;
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 30px;
            text-align: justify;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 19px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        }

        /* Content Blocks */
        .content-block {
            margin: 50px 0;
        }

        .content-block h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 20px;
        }

        .content-block h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #374151;
            margin: 30px 0 20px 0;
        }

        .content-block p {
            font-size: 19px;
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: justify;
        }

        .content-block a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }

        .content-block a:hover {
            text-decoration: underline;
        }

        /* Service Highlights Section */
        .service-highlights {
            background: white;
            border-radius: 20px;
            padding: 60px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border: 1px solid #e5e7eb;
            margin: 50px 0;
        }

        .highlights-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .highlights-text h3 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .highlights-visual {
            position: relative;
        }

        .image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .service-image-large {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .image-wrapper:hover .image-overlay {
            opacity: 1;
        }

        .image-wrapper:hover .service-image-large {
            transform: scale(1.05);
        }

        .overlay-content {
            text-align: center;
            color: white;
        }

        .overlay-content i {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .overlay-content h4 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .overlay-content p {
            font-size: 19px;
            opacity: 0.9;
        }

        /* CTA Groups */
        .cta-group {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .cta-button.primary {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border: none;
        }

        .cta-button.secondary {
            background: transparent;
            border: 2px solid #667eea;
            color: #667eea;
        }

        .cta-button.secondary:hover {
            background: #667eea;
            color: white;
        }

        .cta-button.large {
            padding: 18px 35px;
            font-size: 1.2rem;
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 20px;
            padding: 50px;
            margin: 50px 0;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="50" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="90" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
        }

        .cta-banner-content {
            position: relative;
            z-index: 2;
        }

        .cta-banner-text h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
        }

        .cta-banner-text p {
            font-size: 1.3rem;
    opacity: 0.9;
    text-align: center;
    margin-bottom: 30px;
    color: #ebd6d6;
        }
.faq-section h3 {
    padding-bottom: 20px;
}
        .cta-banner-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-banner .cta-button {
            background: white;
            color: #667eea;
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-banner .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .cta-banner .cta-button.secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .cta-banner .cta-button.secondary:hover {
            background: white;
            color: #667eea;
        }

        /* FAQ Section */
        .faq-section {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin: 40px 0;
        }

        .faq-item {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e5e7eb;
        }

        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .faq-question {
            font-weight: 600;
            color: #1f2937;
            font-size: 19px;
            margin-bottom: 10px;
        }

        .faq-answer {
            color: #4b5563;
            line-height: 1.7;
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 30px;
        }

        .sidebar-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border: 1px solid #e5e7eb;
            margin-bottom: 30px;
        }

        .services-menu {
            list-style: none;
        }

        .services-menu li {
            margin-bottom: 15px;
        }

        .services-menu a {
            display: block;
            padding: 15px 20px;
            background: #f8fafc;
            border-radius: 10px;
            color: #4b5563;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .services-menu a:hover {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            transform: translateX(5px);
        }

        /* Contact Card */
        .contact-card {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .contact-content {
            position: relative;
            z-index: 2;
        }

        .contact-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .contact-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .contact-phone {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .contact-phone:hover {
            transform: scale(1.05);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .premium-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .service-card {
                padding: 30px;
            }

            .highlights-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .highlights-text h3 {
                font-size: 1.8rem;
            }

            .service-highlights {
                padding: 40px 30px;
            }

            .cta-group {
                flex-direction: column;
            }

            .cta-banner {
                padding: 40px 30px;
            }

            .cta-banner-text h3 {
                font-size: 2rem;
            }

            .cta-banner-buttons {
                flex-direction: column;
            }

            .breadcrumb-nav {
                flex-wrap: wrap;
            }
        }
.highlights-text p {
    text-align: justify;
}
        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }