        /* Contact Form Specific Styles */
        .contact-container {
            display: flex;
            max-width: 1200px;
            margin: 100px auto 50px;
            padding: 0 20px;
            gap: 40px;
        }
        
        .form-section, .info-section {
            flex: 1;
            padding: 40px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .form-section:hover, .info-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .form-section h1 {
            color: #1e293b;
            margin-bottom: 15px;
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #3498db, #2c3e50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .form-section p {
            color: #64748b;
            margin-bottom: 30px;
            line-height: 1.6;
            font-size: 1.05rem;
        }
        
        .form-group {
            margin-bottom: 25px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #334155;
            font-size: 1rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 18px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
            background-color: #f8fafc;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #3498db;
            outline: none;
            box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.15);
            background-color: #fff;
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #94a3b8;
        }
        
        .error-message {
            color: #e74c3c;
            font-size: 14px;
            margin-top: 8px;
            display: block;
            font-weight: 500;
        }
        
        button[type="submit"] {
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            border: none;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(52, 152, 219, 0.2);
            width: 100%;
            letter-spacing: 0.5px;
        }
        
        button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 14px rgba(52, 152, 219, 0.3);
        }
        
        button[type="submit"]:active {
            transform: translateY(0);
        }
        
        .success-message, .error-message-global {
            padding: 20px;
            border-radius: 8px;
            margin-top: 25px;
            display: none;
            animation: fadeIn 0.5s ease forwards;
        }
        
        .success-message {
            background: linear-gradient(135deg, #d4edda, #c3e6cb);
            color: #155724;
            border: 1px solid #b8dfc1;
            box-shadow: 0 4px 10px rgba(214, 234, 220, 0.5);
        }
        
        .error-message-global {
            background: linear-gradient(135deg, #f8d7da, #f5c6cb);
            color: #721c24;
            border: 1px solid #f1b0b7;
            box-shadow: 0 4px 10px rgba(248, 215, 218, 0.5);
        }
        
        /* Info Section Styles */
        .info-section {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }
        
        .info-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #3498db, #2c3e50);
        }
        
        .info-section h2 {
            color: #1e293b;
            margin-bottom: 30px;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 15px;
            font-weight: 700;
        }
        
        .info-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 4px;
            background: linear-gradient(to right, #3498db, #2c3e50);
            border-radius: 2px;
        }
        
        .office-info, .address-info {
            margin-bottom: 35px;
            position: relative;
            padding-left: 20px;
        }
        
        .office-info::before, .address-info::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #3498db;
        }
        
        .info-section h3 {
            color: #334155;
            margin-bottom: 18px;
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .info-section p {
            color: #475569;
            margin-bottom: 10px;
            line-height: 1.6;
            position: relative;
            padding-left: 15px;
        }
        
        .info-section p::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #3498db;
            font-weight: bold;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .contact-container {
                flex-direction: column;
                margin-top: 80px;
            }
            
            .form-section, .info-section {
                width: 100%;
            }
            
            .info-section {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .form-section, .info-section {
                padding: 25px;
            }
            
            .form-section h1 {
                font-size: 1.8rem;
            }
        }