
    :root {
      --primary-color: #4f46e5;
      --secondary-color: #06b6d4;
    }
    
    .navbar {
      background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    }
    
    .page-header {
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
      color: white;
      padding: 3rem 0;
    }
    
    .contact-section {
      padding: 4rem 0;
    }
    
    .contact-card {
      background: white;
      border-radius: 16px;
      padding: 2.5rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      height: 100%;
    }
    
    .form-label {
      font-weight: 600;
      color: #334155;
      margin-bottom: 0.5rem;
    }
    
    .form-control, .form-select {
      border: 2px solid #e2e8f0;
      border-radius: 8px;
      padding: 0.75rem 1rem;
      transition: all 0.3s ease;
    }
    
    .form-control:focus, .form-select:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.1);
    }
    
    .btn-submit {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      border: none;
      padding: 0.875rem 2rem;
      border-radius: 8px;
      color: white;
      font-weight: 600;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
      color: white;
    }
    
    .info-box {
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      border-radius: 12px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      border-left: 4px solid var(--primary-color);
      transition: transform 0.3s ease;
    }
    
    .info-box:hover {
      transform: translateX(5px);
    }
    
    .info-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: white;
      margin-right: 1rem;
      flex-shrink: 0;
    }
    
    .faq-item {
      background: white;
      border-radius: 8px;
      padding: 1.5rem;
      margin-bottom: 1rem;
      border: 2px solid #e2e8f0;
      transition: all 0.3s ease;
    }
    
    .faq-item:hover {
      border-color: var(--primary-color);
      box-shadow: 0 4px 12px rgba(79, 70, 229, 0.1);
    }
    
    .social-links {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 2rem;
    }
    
    .social-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      transition: transform 0.3s ease;
      text-decoration: none;
    }
    
    .social-icon:hover {
      transform: scale(1.1);
      color: white;
    }
    
    .alert-success {
      display: none;
      border-radius: 8px;
      border-left: 4px solid #10b981;
    }
