        /* Base Styles */
        :root {
            --primary: #f8b400;
            --primary-dark: #f8b400;
            --secondary: #f8b400;
            --light: #f9f9f9;
            --dark: #333;
            --gray: #c8a2a2;
            --light-gray: #f1f1f1;
            --border-radius: 5px;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 2.8rem;
        }

        h2 {
            font-size: 2.2rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--secondary);
        }

        p {
            margin-bottom: 1.2rem;
            color: var(--gray);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 14px 28px;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
        }

        .btn-secondary {
            background-color: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2:after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Navbar */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
        }

        .navbar.sticky {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.8rem;
            margin-bottom: 0;
            color: var(--primary);
        }

        .logo span {
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #e6f7ff 0%, #f0f9ff 100%);
            padding: 290px 0 100px;
            text-align: center;
        }

        .hero h1 {
            margin-bottom: 20px;
            color: var(--primary);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Why Choose Us */
        .why-choose-us .container {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .why-content {
            flex: 1;
        }

        .why-visual {
            flex: 1;
        }

        .why-image {
            width: 100%;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-bottom: 30px;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .feature-box {
            background-color: var(--light-gray);
            padding: 20px;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
        }

        .feature-icon {
            background-color: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        /* Services */
        .services-tabs {
            margin-top: 40px;
        }

        .tab-buttons {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 5px;
        }

        .tab-btn {
            padding: 15px 30px;
            background-color: var(--gray);
            border: none;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .tab-btn.active {
            background-color: var(--primary);
            color: white;
        }

        .tab-btn:hover:not(.active) {
            background-color: #e0e0e0;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .tab-content .container {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .tab-image {
            flex: 1;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }

        .tab-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .tab-details {
            flex: 1;
        }

        .service-list {
            list-style: none;
            margin-top: 20px;
        }

        .service-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .service-list li i {
            color: var(--secondary);
            margin-right: 10px;
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--primary);
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            color: white;
        }

        .cta-section h2:after {
            background-color: var(--secondary);
            left: 50%;
            transform: translateX(-50%);
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .cta-section .btn {
            background-color: var(--secondary);
            color: var(--dark);
        }

        .cta-section .btn:hover {
            background-color: #e6a500;
        }

        /* FAQ */
        .faq-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .faq-item {
            border: 1px solid #eee;
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            background-color: var(--light-gray);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-question i {
            transition: var(--transition);
        }

        /* Service Areas */
        .service-areas {
            background-color: var(--light-gray);
        }

        .areas-list {
            columns: 2;
            column-gap: 40px;
            margin-top: 30px;
        }

        .areas-list p {
            margin-bottom: 10px;
            break-inside: avoid;
        }

        /* Additional Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .service-card {
            background-color: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        /* Benefits */
        .benefits-list {
            list-style: none;
            margin-top: 30px;
        }

        .benefits-list li {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .benefits-list li i {
            color: var(--secondary);
            margin-right: 15px;
            font-size: 1.2rem;
        }

        /* Contact */
        .contact-info {
            text-align: center;
            margin-bottom: 40px;
        }

        .contact-info p {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .map-container {
            height: 400px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        footer p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 10px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {

            .why-choose-us .container,
            .tab-content .container {
                flex-direction: column;
            }

            .faq-container,
            .services-grid,
            .features {
                grid-template-columns: 1fr;
            }

            h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: var(--transition);
                z-index: 999;
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .nav-links li {
                margin: 15px 0;
            }

            .mobile-toggle {
                display: block;
            }

            .areas-list {
                columns: 1;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .tab-buttons {
                flex-direction: column;
            }

            .tab-btn {
                border-radius: var(--border-radius);
            }
        }
