/* English Test Preparation Page Styles */
.english-test-prep {
    padding: 60px 0;
    background-color: #f8f9fa;
  }
  
  .english-test-prep h1 {
    color: #0b1f47;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .english-test-prep > p {
    color: #6c757d;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
  }
  
  .test-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  
  .test-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .test-card:hover {
    transform: translateY(-5px);
  }
  
  .test-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .test-card h3 {
    padding: 20px 20px 10px;
    margin: 0;
    color: #0b1f47;
    font-size: 1.5rem;
  }
  
  .test-card p {
    padding: 0 20px 20px;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .btn-details {
    display: block;
    text-align: center;
    padding: 12px 0;
    background-color: #0b1f47;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 600;
  }
  
  .btn-details:hover {
    background-color: #ffd700;
    color: #0b1f47;
  }
  
  .prep-features {
    margin-top: 60px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .prep-features h2 {
    color: #0b1f47;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .prep-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .prep-features li {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 1rem;
  }
  
  .prep-features i {
    color: #0b1f47;
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  /* Additional Styles */
  .test-overview {
    margin-top: 60px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .test-overview h2 {
    color: #0b1f47;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .test-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .test-overview-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .test-overview-item:hover {
    transform: translateY(-5px);
  }
  
  .test-overview-item h3 {
    color: #0b1f47;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .test-overview-item p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .cta-section {
    margin-top: 60px;
    text-align: center;
  }
  
  .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffd700;
    color: #0b1f47;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #0b1f47;
    color: #ffffff;
    transform: translateY(-3px);
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .test-types {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .test-types {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .prep-features ul {
      grid-template-columns: 1fr;
    }
  
    .test-overview-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .english-test-prep {
      padding: 40px 0;
    }
  
    .english-test-prep h1 {
      font-size: 2rem;
    }
  
    .test-types {
      grid-template-columns: 1fr;
    }
  
    .prep-features,
    .test-overview {
      padding: 30px;
    }
  
    .prep-features h2,
    .test-overview h2 {
      font-size: 1.5rem;
    }
  
    .cta-button {
      padding: 12px 24px;
      font-size: 1rem;
    }
  }
  
  