/* General page setup */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
  }
  
  /* Header and Navigation */
  header {
    background-color: #1e3a5f;
    color: white;
    padding: 20px 0;
    text-align: center;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(to right, #1e3a5f, #3f5b99);
    color: white;
    padding: 80px 20px;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
  }
  
  .cta-button {
    background-color: #ffcc00;
    color: #1e3a5f;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e6b800;
  }
  
  /* Footer */
  footer {
    background-color: #1e3a5f;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
  }
  

  /* Page Header Section */
.page-header {
    background-color: #e2ecf4;
    text-align: center;
    padding: 60px 20px;
  }
  
  .page-header h2 {
    font-size: 2.5em;
    color: #1e3a5f;
    margin-bottom: 10px;
  }
  
  .page-header p {
    font-size: 1.2em;
    color: #555;
  }
  
  /* Services Detail Blocks */
  .services-detail {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
  }
  
  .service-block {
    background-color: #ffffff;
    padding: 25px 30px;
    border-left: 5px solid #1e3a5f;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  .service-block h3 {
    margin-top: 0;
    color: #1e3a5f;
    font-size: 1.5em;
  }
  
  .service-block p {
    color: #555;
    line-height: 1.5;
  }

  
 /* Contact Page */
.contact-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start; /* Keeps form and info aligned at the top */
    gap: 40px;
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .contact-info h3,
  .contact-form h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #1e3a5f;
  }
  
  .contact-info p {
    color: #444;
    margin: 10px 0;
    line-height: 1.5;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
  }
  
  .contact-form button {
    background-color: #1e3a5f;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #163255;
  }
  