/* Base reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body */
  body {
    font-family: Arial, sans-serif;
    color: #222;
    background: #f8f9fa;
  }
  
  /* Containers */
  .container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
  }
  
  /* Navbar */
  .navbar {
    background: #0B1F3A;
    padding: 15px 0;
  }
  
  .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo img {
    height: 50px;
  }
  
  nav a {
    color: white;
    margin-left: 25px;
    font-weight: bold;
    text-decoration: none;
  }
  
  /* Hero */
  .hero {
    background: linear-gradient(135deg, #0B1F3A, #1E73E8);
    color: white;
    text-align: center;
    padding: 80px 0;
  }
  
  .hero p {
    margin-top: 15px;
    margin-bottom: 25px;
  }
  
  /* Buttons */
  .btn-primary, .btn-secondary {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
  }
  
  .btn-primary {
    background: #1E73E8;
    color: white;
  border-radius: 6px;
  }
  
  .btn-secondary {
    background: white;
    color: #0B1F3A;
    border: 2px solid #0B1F3A;
  }
  
  /* Sections */
  .services-preview, /*.faq-preview,*/ .about-section, /*.cta-section,*/ .services-list, .faq-list, .contact-info {
    padding: 60px 0;
  }
  
  /* Grids */
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }
  
  .card, .service-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  }
  
  /* Inner headers */
  .inner-header {
    background: #1E73E8;
    color: white;
    text-align: center;
    padding: 60px 0;
  }
  
  /* Footer */
  footer {
    background: #0B1F3A;
    color: white;
    text-align: center;
    padding: 20px 0;
  }

/* FAQ Preview Section */
.faq-preview {
    padding: 80px 0;
    background: #ffffff;
  }
  
  .faq-preview h2 {
    margin-bottom: 25px;
  }
  
  .faq-preview p {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .faq-preview .btn-primary {
    display: inline-block;
    margin-top: 20px;
  }
  
  /* CTA Section */
  .cta-section {
    background: #f2f2f2;
    padding: 80px 0;
    text-align: left;
  }
  
  .cta-section h2 {
    margin-bottom: 25px;
  }
  
  .cta-section .btn-primary {
    display: inline-block;
    margin-top: 10px;
  }

  /* Main email container */
  .contact-info {
    max-width: 600px;
    margin: auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }

  /* Heading styles */
  .contact-info h2 {
    color: #333333;
  }

  /* Paragraph styles */
  .contact-info p {
    color: #555555;
  }

  /* Email button styles */
  .email-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007bff;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
  }

  /* Plain text email link */
  .email-link {
    color: #007bff;
  }

  
