   .contact-hero {
            height: 400px;

            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        
        }
        .contact-hero-content {
            max-width: 800px;
            padding: 0 24px;
        }
        .contact-hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
            text-shadow: 0 2px 15px rgba(0,0,0,0.3);
        }
        .contact-hero-breadcrumb {
            display: flex;
            justify-content: center;
            gap: 8px;
            font-size: 16px;
            opacity: 0.9;
        }
        .contact-hero-breadcrumb a {
            color: #ffd966;
            text-decoration: none;
        }
        .contact-hero-breadcrumb a:hover {
            text-decoration: underline;
        }

        .contact-main {
            padding: 20px 0;
        }

        .contact-wrapper {
            display: flex;
            gap: 48px;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .contact-info {
            flex: 1;
            min-width: 320px;
        }
        .contact-details {
            background: #f8fafc;
            padding: 32px;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.04);
        }
        .contact-detail-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }
        .contact-icon {
            font-size: 24px;
            color: #e31e24;
            min-width: 24px;
            margin-top: 2px;
        }
        .contact-detail-content h3 {
            font-size: 18px;
            color: #1f2937;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .contact-detail-content p, .contact-detail-content a {
            color: #4b5563;
            line-height: 1.6;
            text-decoration: none;
        }
        .contact-detail-content a:hover {
            color: #e31e24;
            text-decoration: underline;
        }

        .contact-form {
            flex: 1.5;
            min-width: 320px;
            background: #ffffff;
            padding: 32px;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }
        .contact-form h2 {
            font-size: 24px;
            color: #1f2937;
            margin-bottom: 24px;
            font-weight: 600;
        }
		
		
		  .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #1f2937;
            font-weight: 500;
        }
        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            font-size: 16px;
            color: #1f2937;
            transition: border-color 0.2s;
        }
        .form-control:focus {
            outline: none;
            border-color: #e31e24;
            box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
            line-height: 1.5;
        }
        .submit-btn {
            display: inline-block;
            padding: 12px 32px;
            background: #e31e24;
            color: white;
            font-weight: 600;
            text-decoration: none;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 16px;
        }
        .submit-btn:hover {
            background: #c0181f;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(227, 30, 36, 0.2);
        }






        @media (max-width: 768px) {

            .contact-hero {
                height: 300px;
            }
            .contact-hero h1 {
                font-size: 36px;
            }
            .contact-wrapper {
                gap: 24px;
            }
        }

        @media (max-width: 560px) {
            .contact-hero h1 {
                font-size: 28px;
            }
            .contact-details, .contact-form {
                padding: 24px 16px;
            }
        }