 :root {
            --dtc-primary: #2563eb;
            --dtc-primary-dark: #1d4ed8;
            --dtc-secondary: #7c3aed;
            --dtc-accent: #06b6d4;
            --dtc-light: #f8fafc;
            --dtc-gray: #64748b;
            --dtc-dark: #1e293b;
            --dtc-gradient: linear-gradient(135deg, var(--dtc-primary) 0%, var(--dtc-secondary) 100%);
        }

        /* Contact Page Specific Styles */
        .cl-contact {
            padding: 5rem 0;
        }

        .cl-contact-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .cl-contact-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dtc-dark);
        }

        .cl-contact-header p {
            font-size: 1.1rem;
            color: var(--dtc-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .cl-contact-card {
            background: white;
            border-radius: 1rem;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
        }

        .cl-contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
        }

        .cl-contact-icon {
            width: 3.5rem;
            height: 3.5rem;
            background: var(--dtc-gradient);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.5rem;
        }

        .cl-contact-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dtc-dark);
        }

        .cl-contact-card p {
            color: var(--dtc-gray);
            margin-bottom: 1.5rem;
        }

        .cl-contact-link {
            color: var(--dtc-primary);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        .cl-contact-link:hover {
            color: var(--dtc-primary-dark);
        }

        .cl-contact-link i {
            margin-right: 0.5rem;
        }

        .cl-contact-form {
            background: white;
            border-radius: 1rem;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .cl-contact-form h2 {
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--dtc-dark);
        }

        .cl-contact-form .form-control {
            height: 3rem;
            border-radius: 0.5rem;
            border: 1px solid #e2e8f0;
            padding: 0.75rem 1rem;
            margin-bottom: 1.5rem;
        }

        .cl-contact-form .form-control:focus {
            border-color: var(--dtc-primary);
            box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.1);
        }

        .cl-contact-form textarea.form-control {
            height: auto;
            min-height: 150px;
        }

        .cl-contact-form-btn {
            background: var(--dtc-gradient);
            border: none;
            padding: 0.875rem 2.5rem;
            border-radius: 0.5rem;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }

        .cl-contact-form-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
        }

        .cl-contact-info {
            margin-top: 4rem;
        }

        .cl-contact-info h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--dtc-dark);
        }

        .cl-contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .cl-contact-info-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--dtc-primary);
            font-size: 1.25rem;
        }

        .cl-contact-info-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: var(--dtc-dark);
        }

        .cl-contact-info-content p {
            color: var(--dtc-gray);
            margin-bottom: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .cl-contact-header h1 {
                font-size: 2rem;
            }
            
            .cl-contact-header p {
                font-size: 1rem;
            }
            
            .cl-contact-card {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .cl-contact-form {
                padding: 1.5rem;
            }
        }