        :root {
            --primary: #e65100;
            --primary-light: #ff8330;
            --primary-dark: #b33c00;
        }

        /* Hero Section */
        .contact-us-contact-hero {
            position: relative;
            height: 40%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: -24px;
        }

        .contact-us-hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .contact-us-hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .contact-us-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(230, 81, 0, 0.5) 0%, rgba(230, 81, 0, 0.5) 100%);
            z-index: 1;
        }

        .contact-us-hero-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            padding: 2rem;
            max-width: 1200px;
        }

        .contact-us-hero-content h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .divider {
            width: 80px;
            height: 4px;
            background: white;
            margin: 2rem auto;
            border-radius: 2px;
        }

        /* Contact Cards */
        .contact-us-contact-cards {
            position: relative;
            z-index: 10;
            /* margin-top: -80px; */
            padding: 0 15px;
        }

        .contact-us-contact-card {
            background: white;
            border-radius: 20px 0 20px 0;
            /* Top-left and bottom-right */
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            height: 100%;
            transition: all 0.4s ease;
            border-bottom: 4px solid var(--primary);
        }

        .contact-us-contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: rgba(230, 81, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .contact-icon i {
            font-size: 2rem;
            color: var(--primary);
        }

        .contact-us-contact-card h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #333;
        }

        .contact-us-contact-card p {
            margin-bottom: 0.25rem;
            color: #555;
        }

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

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

        .fade-in {
            animation: fadeIn 1s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .contact-hero {
                height: 50vh;
            }

            .contact-cards {
                margin-top: -60px;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .contact-hero {
                height: 45vh;
                min-height: 350px;
            }

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

            .contact-card {
                padding: 1.8rem 1.5rem;
            }
        }


        .contact-section {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .form-title {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .form-description {
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        .submit-btn {
            background-color: #ff5722;
            color: #fff;
            font-weight: bold;
        }

        .submit-btn:hover {
            background-color: #e64a19;
            color: #fff;
        }

        .social-links {
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: inherit;
            margin-bottom: 15px;
        }

        .social-links a img {
            margin-right: 10px;
        }

        .store-image img {
            width: 100%;
            margin-top: 20px;
        }

        .check-icon {
            color: green;
            margin-right: 10px;
        }