.technical-download .section-title h2 {
    color: #183B6D;
    margin-bottom: 20px;
  }
  
  .technical-download .section-title p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .download-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
  }
  
  .download-form .form-label {
    font-weight: 600;
    color: #183B6D;
    margin-bottom: 8px;
  }
  
  .download-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .download-form .form-control:focus {
    border-color: #183B6D;
    box-shadow: 0 0 0 0.2rem rgba(24, 59, 109, 0.25);
  }
  
  .download-form .form-control::placeholder {
    color: #adb5bd;
  }
  
  .download-form .btn-primary {
    background: linear-gradient(135deg, #183B6D 0%, #2c5aa0 100%);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .download-form .btn-primary:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #183B6D 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 59, 109, 0.3);
  }
  
  .download-form .form-check-input:checked {
    background-color: #183B6D;
    border-color: #183B6D;
  }
  
  .download-form .form-check-label {
    color: #6c757d;
    font-size: 0.95rem;
  }
  
  .download-form .form-check-label a {
    color: #183B6D;
    text-decoration: none;
  }
  
  .download-form .form-check-label a:hover {
    text-decoration: underline;
  }
  
  .text-danger {
    color: #dc3545 !important;
  }
  
  .technical-docs {
    background: #ffffff;
    padding: 40px;
    /* border-radius: 15px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    border: 1px solid #e9ecef;
    margin-bottom: 30px;
  }
  
  .doc-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    /* margin-bottom: 20px; */
    transition: all 0.3s ease;
  }
  
  .doc-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }
  
  .doc-item h4 {
    color: #183B6D;
    margin-bottom: 10px;
  }
  
  .doc-item p {
    color: #6c757d;
    margin-bottom: 15px;
  }
  
  .doc-item .btn {
    background: linear-gradient(135deg, #183B6D 0%, #2c5aa0 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .doc-item .btn:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #183B6D 100%);
    transform: translateY(-1px);
  }
  
  @media (max-width: 768px) {
    .technical-download {
      padding: 60px 0;
    }
    
    .download-form, .technical-docs {
      padding: 30px 20px;
      margin: 0 15px;
    }
  }
