:root {
            --primary-blue: #0A6FB5;
            --input-bg: #F7F7F7;
            --button-light-gray: #E0E0E0;
            --button-text-gray: #5C5C5C;
        }

        /* Tiêu đề chính */
        .contact-title {
            color: var(--primary-blue);
            font-size: 32px;
            font-weight: 700;
        }

        /* Hộp liên hệ chính */
        .contact-box {
            background: #fff;
            /* Tăng bo góc để khớp với thiết kế */
            border-radius: 1.5rem; 
            /* Thay thế shadow-sm của Bootstrap bằng đổ bóng nhẹ hơn */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        /* Tiêu đề cột trái */
        .contact-left-title {
            color: var(--primary-blue);
            font-weight: 700;
        }

        /* Input và Textarea */
        .contact-input,
        .contact-textarea,
        .contact-select {
            background-color: rgba(247, 247, 247, 1) !important ;
            border: none !important;
            padding: 12px 18px !important;
            font-size: 0.875rem; /* Kích thước font nhỏ hơn */
        }
        
        /* Input: Bo góc rất tròn (giống rounded-pill) */
        .contact-input,
        .contact-select {
            border-radius: 9999px !important;
        }

        /* Textarea: Bo góc vừa phải */
        .contact-textarea {
            border-radius: 1.25rem !important;
            resize: none; /* Cấm kéo dãn */
        }

        /* Hiệu ứng focus */
        .contact-input:focus,
        .contact-textarea:focus,
        .contact-select:focus {
            border-color: rgba(10, 111, 181, 0.5);
            box-shadow: 0 0 0 0.25rem rgba(10, 111, 181, 0.25);
        }

        /* Nút Gửi */
        .btn-submit {
            background: #2a86ff; /* Màu xám nhạt */
            color: #fff; /* Màu chữ xám đậm */
            font-weight: 600;
            border: none;
            transition: background 0.2s;
            padding: 0.75rem 2rem; /* Tăng padding */
            font-size: 0.95rem;
        }

        .btn-submit:hover {
            background: #3835f1; /* Hơi tối hơn khi hover */
            color: #fff;
        }

        /* Social Icons */
        .contact-social {
            color: var(--primary-blue);
            font-size: 1.25rem; 
            text-decoration: none;
        }