
        .c-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0px 30px;
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .c-hero-section {
            padding: 4rem 0 3rem;
            text-align: center;
            background: linear-gradient(135deg, var(--bg-light) 0%, #f3f4f6 100%);
            margin-top: 3rem ;
            margin-bottom: 3rem;
            border-radius: 0 0 24px 24px;
            position: relative;
            overflow: hidden;
        }

        .c-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
            z-index: -1;
        }

        .c-hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .c-hero-subtitle {
            font-size: 1.4rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .c-contact-wrapper {
            display: flex;
            gap: 2.5rem;
            margin-bottom: 4rem;
            align-items: stretch;
            width: 100%;
        }

        .c-contact-info-card,
        .c-form-card {
            flex: 1;
            min-width: 0;
            background: var(--white);
            border-radius: 24px;
            padding: 3.5rem ;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #e5e7eb;
            position: relative;
            overflow: hidden;
            margin: 0px 0px 45px 0px ;
        }

        .c-contact-info-card::before,
        .c-form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .c-contact-info-card:hover,
        .c-form-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .c-info-header,
        .c-form-header {
            margin-bottom: 2.5rem;
        }

        .c-info-title,
        .c-form-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            position: relative;
            display: inline-block;
        }

        .c-info-title::after,
        .c-form-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .c-info-description,
        .c-form-description {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-top: 1rem;
            line-height: 1.6;
        }

        .c-contact-methods {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }

        .c-contact-method {
            display: flex;
            align-items: center;
            gap: 1.8rem;
            padding: 1.8rem;
            background: var(--bg-light);
            border-radius: 16px;
            transition: var(--transition);
            border: 1px solid #e5e7eb;
        }

        .c-contact-method:hover {
            background: linear-gradient(to right, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
            transform: translateX(8px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
        }

        .c-method-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 8px 16px rgba(99, 102, 241, 0.25);
            flex-shrink: 0;
        }

        .c-method-content {
            flex: 1;
            min-width: 0;
        }

        .c-method-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.4rem;
            font-size: 1.1rem;
        }

        .c-method-value {
            color: var(--text-light);
            font-size: 1.05rem;
            word-break: break-word;
        }

        .c-social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }

        .c-social-link {
            width: 50px;
            height: 50px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            font-size: 1.2rem;
        }

        .c-social-link:hover {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
        }

        .c-contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }

        .c-form-row {
            display: flex;
            gap: 1.8rem;
        }

        .c-form-row .c-form-group {
            flex: 1;
        }

        .c-form-group {
            display: flex;
            flex-direction: column;
        }

        .c-form-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.6rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.05rem;
        }

        .c-required {
            color: #ef4444;
        }

        .c-form-input,
        .c-form-textarea,
        .c-form-select {
            padding: 1.1rem;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 1rem;
            transition: var(--transition);
            background: var(--white);
            color: var(--text-dark);
            width: 100%;
        }

        .c-form-input:focus,
        .c-form-textarea:focus,
        .c-form-select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
        }

        .c-form-textarea {
            resize: vertical;
            min-height: 140px;
        }

        .c-submit-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            border: none;
            padding: 1.2rem 2.5rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            width: 100%;
            margin-top: 0.5rem;
        }

        .c-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(99, 102, 241, 0.4);
        }

        .c-faq-section {
            background: var(--white);
            border-radius: 24px;
            padding: 2.5rem;
            margin-bottom: 4rem;
            box-shadow: var(--shadow);
            border: 1px solid #e5e7eb;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .c-faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .c-faq-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .c-faq-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .c-faq-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .c-faq-subtitle {
            color: var(--text-light);
            font-size: 1.2rem;
            margin-top: 1.5rem;
        }

        .c-faq-list {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .c-faq-item {
            background: var(--bg-light);
            border-radius: 16px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid #e5e7eb;
        }

        .c-faq-item:hover {
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
        }

        .c-faq-question {
            padding: 1.8rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-dark);
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .c-faq-question:hover {
            background: linear-gradient(to right, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
        }

        .c-faq-icon {
            transition: var(--transition);
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        /* CSS-only FAQ accordion */
        .c-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .c-faq-item input[type="checkbox"] {
            display: none;
        }

        .c-faq-item input[type="checkbox"]:checked ~ .c-faq-answer {
            max-height: 300px;
        }

        .c-faq-item input[type="checkbox"]:checked ~ .c-faq-question .c-faq-icon {
            transform: rotate(180deg);
        }

        .c-faq-content {
            padding: 0 1.8rem 1.8rem;
            color: var(--text-light);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .c-map-section {
            background: var(--white);
            border-radius: 24px;
            padding: 3.5rem;
            margin-bottom: 4rem;
            box-shadow: var(--shadow);
            border: 1px solid #e5e7eb;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .c-map-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .c-map-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .c-map-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .c-map-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .c-map-container {
            border-radius: 16px;
            overflow: hidden;
            height: 450px;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
        }

        .c-map-placeholder {
            text-align: center;
            color: var(--text-light);
        }

        .c-map-placeholder i {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .c-container {
                max-width: 1200px;
            }
            
            .c-hero-title {
                font-size: 3rem;
            }
            
            .c-hero-subtitle {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 1024px) {
            .c-contact-wrapper {
                flex-direction: column;
                gap: 2rem;
            }
            
            .c-hero-title {
                font-size: 2.8rem;
            }
            
            .c-contact-info-card,
            .c-form-card,
            .c-faq-section,
            .c-map-section {
                padding: 3rem;
            }
        }

        @media (max-width: 768px) {
            .c-hero-section {
                padding: 2.5rem 0 2rem;
            }
            
            .c-hero-title {
                font-size: 2.5rem;
            }
            
            .c-hero-subtitle {
                font-size: 1.2rem;
            }
            
            .c-contact-wrapper {
                gap: 2rem;
            }
            
            .c-contact-info-card,
            .c-form-card,
            .c-faq-section,
            .c-map-section {
                padding: 2.5rem;
            }
            
            .c-info-title,
            .c-form-title,
            .c-map-title {
                font-size: 1.8rem;
            }
            
            .c-faq-title {
                font-size: 2.2rem;
            }
            
            .c-form-row {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .c-contact-method {
                padding: 1.5rem;
                gap: 1.5rem;
            }
            
            .c-method-icon {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            .c-social-links {
                justify-content: center;
                gap: 1rem;
            }
            
            .c-social-link {
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 640px) {
            .c-container {
                padding: 0px;
            }
            
            .c-hero-section {
                padding: 2rem 0 1.5rem;
            }
            
            .c-hero-title {
                font-size: 2.2rem;
            }
            
            .c-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .c-contact-wrapper {
                gap: 1.5rem;
            }
            
            .c-contact-info-card,
            .c-form-card,
            .c-faq-section,
            .c-map-section {
                padding: 1rem;
            }
            
            .c-info-title,
            .c-form-title,
            .c-map-title {
                font-size: 1.6rem;
            }
            
            .c-faq-title {
                font-size: 2rem;
            }
            
            .c-info-description,
            .c-form-description {
                font-size: 1rem;
            }
            
            .c-contact-method {
                padding: 1.2rem;
                gap: 1.2rem;
            }
            
            .c-method-icon {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
            
            .c-method-label {
                font-size: 1rem;
            }
            
            .c-method-value {
                font-size: 0.95rem;
            }
            
            .c-social-links {
                gap: 0.8rem;
            }
            
            .c-social-link {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .c-hero-title {
                font-size: 2rem;
            }
            
            .c-contact-info-card,
            .c-form-card,
            .c-faq-section,
            .c-map-section {
                padding: 0.5rem;
            }
            
            .c-info-title,
            .c-form-title,
            .c-map-title {
                font-size: 1.4rem;
            }
            
            .c-faq-title {
                font-size: 1.8rem;
            }
            
            .c-info-description,
            .c-form-description {
                font-size: 0.95rem;
            }
            
            .c-contact-method {
                flex-direction: column;
                text-align: center;
                padding: 1.2rem;
                gap: 1rem;
            }
            
            .c-method-icon {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            .c-social-links {
                gap: 0.6rem;
            }
            
            .c-social-link {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .c-form-input,
            .c-form-textarea,
            .c-form-select {
                padding: 1rem;
                font-size: 0.95rem;
            }
            
            .c-form-textarea {
                min-height: 120px;
            }
            
            .c-submit-btn {
                padding: 1rem 1.5rem;
                font-size: 1rem;
            }
            
            .c-faq-question {
                padding: 1.2rem;
                font-size: 1rem;
            }
            
            .c-faq-content {
                padding: 0 1.2rem 1.2rem;
                font-size: 0.95rem;
            }
            
            .c-map-container {
                height: 350px;
            }
        }
        .minw{
            padding: 0px 20px ;
        }