
        :root {
            --primary-color: #0F2027; /* Dark Blue */
            --secondary-color: #203A43; /* Mid Blue */
            --accent-color: #FF6B6B; /* Vibrant Coral */
            --text-color: #333;
            --light-text: #F7F7F7;
            --font-family: 'Poppins', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            line-height: 1.6;
            color: var(--text-color);
            background: #fff;
        }

        .container {
            max-width: 1200px;
            margin: auto;
            padding: 40px 20px;
        }

        .h-container {
            max-width: 1200px;
            margin: auto;
            padding: 10px 20px;
        }

        /* Header & Navigation */
        header {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 0 20px;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--light-text);
            text-decoration: none;
            text-transform: uppercase;
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--light-text);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: url('../images/hero.webp') no-repeat center center/cover;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
            padding-top: 80px;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(15, 32, 39, 0.8), rgba(255, 107, 107, 0.5));
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 4.5rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 1rem;
            animation: slideInFromTop 1s ease-out;
        }

        .hero-content p {
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            animation: slideInFromBottom 1s ease-out;
        }

        .btn {
            display: inline-block;
            padding: 18px 40px;
            background: var(--accent-color);
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
            animation: pulse 2s infinite;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
            70% { box-shadow: 0 0 0 20px rgba(255, 107, 107, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
        }

        /* Sections */
        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 50px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            width: 100%;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .service-card {
            background: #fff;
            padding: 30px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-top: 5px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            border-top-color: var(--accent-color);
        }

        .service-card i {
            font-size: 3.5rem;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        /* Why Choose Us */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            text-align: center;
        }
        
        .feature-item h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
            font-weight: 600;
        }

        /* FAQ Accordion */
        .accordion-item {
            background: #fff;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        .accordion-header {
            padding: 20px;
            cursor: pointer;
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to right, #f7f7f7, #fff);
        }
        .accordion-header span { font-size: 1.5rem; color: var(--accent-color); }

        .accordion-content {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
        }
        
        .accordion-item.active .accordion-content {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        /* Contact Form */
        .contact-form {
            max-width: 800px;
            margin: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #eee;
            border-radius: 8px;
            font-family: var(--font-family);
            transition: border-color 0.3s ease;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        .contact-form textarea {
            grid-column: 1 / -1;
            resize: vertical;
            min-height: 150px;
        }

        .contact-form .btn {
            grid-column: 1 / -1;
            justify-self: center;
            border: none;
            cursor: pointer;
            margin-top: 10px;
        }

        /* Footer */
        footer {
            background: var(--primary-color);
            color: var(--light-text);
            text-align: center;
            padding: 50px 20px;
        }

        footer p {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        footer a {
            color: var(--accent-color);
            text-decoration: none;
            margin: 0 15px;
            font-weight: 600;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: var(--light-text);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.8);
        }

        .modal-content {
            background-color: #fff;
            margin: 5% auto;
            padding: 40px;
            border-radius: 15px;
            width: 85%;
            max-width: 600px;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .close {
            color: var(--primary-color);
            position: absolute;
            top: 15px;
            right: 25px;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
        }

        .modal h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .newsletter-form input, .newsletter-form label {
            display: block;
            width: 100%;
            margin-bottom: 15px;
        }
        
        .newsletter-form input {
            padding: 12px;
            border: 2px solid #eee;
            border-radius: 8px;
        }

        .confirmation-message {
            display: none;
            text-align: center;
            font-size: 1.3rem;
            color: var(--primary-color);
        }