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

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #ffffff;
    }

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

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 15px 0;
        transition: all 0.3s ease;
    }

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

    .navbar .logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
        text-decoration: none;
    }

    .navbar .nav-links {
        display: flex;
        list-style: none;
        gap: 30px;
    }

    .navbar .nav-links a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.3s ease;
        padding: 5px 0;
    }

    .navbar .nav-links a:hover,
    .navbar .nav-links a.active {
        color: #ed0640;
    }

    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #333;
        transition: 0.3s;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        padding: 100px 20px 20px;
    }

    .hero-content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        max-width: 600px;
        animation: fadeInUp 1s ease-out;
    }

    .hero h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }

    .cta-button {
        display: inline-block;
        background: #ed0640;
        color: white;
        padding: 15px 30px;
        text-decoration: none;
        border-radius: 50px;
        font-weight: bold;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    }

    .cta-button:hover {
        background: #2980b9;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    }

    /* Services Section */
    .services {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .services h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
        color: #2c3e50;
    }

    .service-card {
        display: flex;
        align-items: center;
        background: white;
        margin-bottom: 30px;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .service-icon {
        font-size: 3rem;
        margin-right: 30px;
        color: #ed0640;
        min-width: 80px;
    }

    .service-icon i {
        display: block;
        width: 100%;
        text-align: center;
    }

    .additional-card h3 i {
        margin-right: 10px;
        color: #ed0640;
    }

    .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #2c3e50;
    }

    /* Image Section */
    .image-section {
        padding: 60px 0;
        background: white;
    }

    .image-section img {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* FAQ Section */
    .faq {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .faq h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
        color: #2c3e50;
    }

    .faq-item {
        background: white;
        margin-bottom: 15px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .faq-question {
        padding: 25px;
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        font-size: 1.1rem;
        font-weight: 600;
        color: #2c3e50;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background 0.3s ease;
    }

    .faq-question:hover {
        background: #f8f9fa;
    }

    .faq-question::after {
        content: '+';
        font-size: 1.5rem;
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question::after {
        transform: rotate(45deg);
    }

    .faq-answer {
        padding: 0 25px 25px;
        display: none;
        color: #666;
        line-height: 1.6;
    }

    /* Service Areas */
    .service-areas {
        padding: 80px 0;
        background: white;
    }

    .service-areas h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
        color: #2c3e50;
    }

    .areas-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .area-item {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        font-weight: 500;
        color: #555;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .area-item:hover {
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-color: #ed0640;
        color: #ed0640;
    }

    /* Additional Services */
    .additional-services {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .additional-services h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
        color: #2c3e50;
    }

    .additional-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .additional-card {
        background: white;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .additional-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .additional-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: #2c3e50;
    }

    /* Contact Section */
    .contact {
        padding: 80px 0;
        background: white;
        text-align: center;
    }

    .contact h2 {
        font-size: 2.5rem;
        margin-bottom: 50px;
        color: #2c3e50;
    }

    .contact-info {
        max-width: 600px;
        margin: 0 auto 40px;
    }

    .contact-info p {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #666;
    }

    .contact-phone {
        font-size: 1.5rem;
        font-weight: bold;
        color: #ed0640;
        margin-bottom: 20px;
    }

    .contact-address {
        margin-bottom: 20px;
        color: #666;
    }

    .contact-hours {
        margin-bottom: 30px;
        color: #666;
    }

    /* Footer */
    .footer {
        background: #2c3e50;
        color: white;
        padding: 40px 0 20px;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .footer-left {
        font-size: 1.1rem;
    }

    .footer-right {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #bdc3c7;
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
        .navbar .nav-links {
            position: fixed;
            top: 70px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 70px);
            background: white;
            flex-direction: column;
            justify-content: flex-start;
            padding-top: 50px;
            transition: left 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .navbar .nav-links.active {
            left: 0;
        }

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

        .hamburger {
            display: flex;
        }

        .hero h1 {
            font-size: 2rem;
        }

        .hero p {
            font-size: 1rem;
        }

        .service-card {
            flex-direction: column;
            text-align: center;
        }

        .service-icon {
            margin-right: 0;
            margin-bottom: 20px;
        }

        .footer-content {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .hero-content {
            padding: 30px 20px;
        }

        .hero h1 {
            font-size: 1.8rem;
        }

        .areas-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
    }




    @media (max-width: 900px) {
        .zigzag-row {
            flex-direction: column !important;
        }

        .zigzag-content,
        .zigzag-img {
            padding: 16px !important;
            max-width: 100%;
        }
    }
