#custom-container-contact-form-85bd37 {
      font-family: 'Poppins', sans-serif !important;
      max-width: 1200px !important;
      margin: 0 auto !important;
      padding: 20px !important;
      color: #333 !important;
      line-height: 1.6 !important;
    }
    
    .custom-header {
      text-align: center !important;
      margin-bottom: 40px !important;
      position: relative !important;
      padding-bottom: 15px !important;
    }
    
    .custom-header h1 {
      color: var(--faster-accent-color, #bf004d) !important;
      font-size: 42px !important;
      margin-bottom: 15px !important;
      font-weight: 700 !important;
      position: relative !important;
      display: inline-block !important;
    }
    
    .custom-header h1:after {
      content: "" !important;
      position: absolute !important;
      width: 60% !important;
      height: 4px !important;
      background-color: var(--faster-accent-color, #bf004d) !important;
      bottom: -10px !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      border-radius: 2px !important;
    }
    
    .custom-header p {
      font-size: 18px !important;
      color: #666 !important;
      max-width: 800px !important;
      margin: 0 auto !important;
    }
    
    .custom-contact-container {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 30px !important;
      margin-bottom: 50px !important;
    }
    
    .custom-contact-form-container {
      flex: 1 1 600px !important;
      background-color: #fff !important;
      border-radius: 10px !important;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
      padding: 30px !important;
      border: 1px solid #eee !important;
    }
    
    .custom-contact-info {
      flex: 1 1 300px !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 20px !important;
    }
    
    .custom-info-card {
      background-color: #fff !important;
      border-radius: 10px !important;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
      padding: 25px !important;
      border: 1px solid #eee !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 15px !important;
    }
    
    .custom-info-card h3 {
      color: var(--faster-accent-color, #bf004d) !important;
      font-size: 20px !important;
      font-weight: 600 !important;
      margin: 0 !important;
      padding-bottom: 10px !important;
      border-bottom: 2px solid #f0f0f0 !important;
    }
    
    .custom-info-item {
      display: flex !important;
      align-items: flex-start !important;
      gap: 15px !important;
    }
    
    .custom-info-icon {
      width: 40px !important;
      height: 40px !important;
      min-width: 40px !important;
      border-radius: 50% !important;
      background-color: #f9f9f9 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      font-size: 18px !important;
      color: var(--faster-accent-color, #bf004d) !important;
    }
    
    .custom-info-content {
      display: flex !important;
      flex-direction: column !important;
      gap: 5px !important;
    }
    
    .custom-info-label {
      font-weight: 600 !important;
      color: #555 !important;
      font-size: 15px !important;
    }
    
    .custom-info-value {
      color: #666 !important;
      font-size: 14px !important;
      line-height: 1.5 !important;
    }
    
    .custom-info-value a {
      color: var(--faster-accent-color, #bf004d) !important;
      text-decoration: none !important;
      transition: all 0.3s ease !important;
    }
    
    .custom-info-value a:hover {
      text-decoration: underline !important;
    }
    
    .custom-form-group {
      margin-bottom: 20px !important;
    }
    
    .custom-form-label {
      display: block !important;
      margin-bottom: 8px !important;
      font-weight: 500 !important;
      color: #444 !important;
      font-size: 15px !important;
    }
    
    .custom-form-control {
      width: 100% !important;
      padding: 12px 16px !important;
      border: 1px solid #ddd !important;
      border-radius: 6px !important;
      font-size: 15px !important;
      color: #333 !important;
      font-family: 'Poppins', sans-serif !important;
      transition: all 0.3s ease !important;
    }
    
    .custom-form-control:focus {
      outline: none !important;
      border-color: var(--faster-accent-color, #bf004d) !important;
      box-shadow: 0 0 0 3px rgba(191,0,77,0.1) !important;
    }
    
    .custom-form-error {
      color: #e74c3c !important;
      font-size: 13px !important;
      margin-top: 5px !important;
      font-weight: 500 !important;
      display: none !important;
    }
    
    .custom-form-error.active {
      display: block !important;
    }
    
    .custom-form-row {
      display: flex !important;
      gap: 20px !important;
    }
    
    .custom-form-col {
      flex: 1 !important;
    }
    
    .custom-textarea {
      min-height: 150px !important;
      resize: vertical !important;
    }
    
    .custom-submit-btn {
      background-color: var(--faster-accent-color, #bf004d) !important;
      color: white !important;
      border: none !important;
      border-radius: 6px !important;
      padding: 14px 30px !important;
      font-size: 16px !important;
      font-weight: 600 !important;
      cursor: pointer !important;
      transition: all 0.3s ease !important;
      display: inline-block !important;
      text-align: center !important;
      margin-top: 10px !important;
    }
    
    .custom-submit-btn:hover {
      background-color: #a0003f !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 5px 15px rgba(191,0,77,0.2) !important;
    }
    
    .custom-submit-btn:active {
      transform: translateY(0) !important;
    }
    
    .custom-social-links {
      display: flex !important;
      gap: 15px !important;
      margin-top: 10px !important;
    }
    
    .custom-social-link {
      width: 40px !important;
      height: 40px !important;
      border-radius: 50% !important;
      background-color: #f1f1f1 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      font-size: 20px !important;
      color: #555 !important;
      text-decoration: none !important;
      transition: all 0.3s ease !important;
    }
    
    .custom-social-link:hover {
      background-color: var(--faster-accent-color, #bf004d) !important;
      color: white !important;
      transform: translateY(-3px) !important;
    }
    
    .custom-map-container {
      margin-top: 50px !important;
      border-radius: 10px !important;
      overflow: hidden !important;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
      border: 1px solid #eee !important;
      height: 400px !important;
    }
    
    .custom-map-container iframe {
      width: 100% !important;
      height: 100% !important;
      border: none !important;
    }
    
    .custom-section-title {
      color: var(--faster-accent-color, #bf004d) !important;
      font-size: 24px !important;
      font-weight: 600 !important;
      margin-bottom: 20px !important;
      padding-bottom: 10px !important;
      border-bottom: 2px solid #f0f0f0 !important;
    }
    
    @media (max-width: 768px) {
      .custom-form-row {
        flex-direction: column !important;
        gap: 15px !important;
      }
      
      .custom-header h1 {
        font-size: 32px !important;
      }
      
      .custom-header p {
        font-size: 16px !important;
      }
      
      .custom-section-title {
        font-size: 20px !important;
      }
      
      .custom-contact-form-container, .custom-info-card {
        padding: 20px !important;
      }
    }
