* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #111111;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #dddddd;
  }
  
  .header-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 18px 0;
  }
  
  .logo img {
    height: 90px;
    width: auto;
    display: block;
  }
  .logo {
    display: flex;
    align-items: center;
    margin-right: 110px;
  }
  
  .main-nav {
    display: flex;
    gap: 32px;
  }
  
  .main-nav a {
    color: #0b1f3a;
    font-weight: 600;
    font-size: 16px;  
    letter-spacing: 0.3px;
}
  
  .hero {
    padding: 110px 0 120px;    
    background: linear-gradient(to right, #0b1f3a, #13294b);
    color: #ffffff;
  }
  
  .eyebrow {
    color: #ff3040;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    font-size: 15px;
  }
  
  .hero h1 {
    font-size: 64px;    
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 20px;
  }
  
  .hero-text {
    font-size: 22px;    
    max-width: 700px;
    margin-bottom: 30px;
    color: #e8edf5;
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;  
}
  
  .btn {
    display: inline-block;
    padding: 16px 30px;    
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
  }
  
  .btn-primary {
    background-color: #ff3040;
    color: #ffffff;
  }
  
  .btn-secondary {
    background-color: #ffffff;
    color: #0b1f3a;
  }
  
  .btn-secondary:hover {
    background-color: #e9eef5;
  }

  .featured-section {
    background-color: #ffffff;
    padding: 90px 0;
  }
  
  .section-heading {
    max-width: 700px;
    margin-bottom: 40px;
  }
  
  .section-label {
    color: #ff3040;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    font-size: 15px;
  }
  
  .section-heading h2 {
    font-size: 48px;
    color: #0b1f3a;
    margin-bottom: 16px;
    line-height: 1.15;
  }
  
  .section-description {
    font-size: 20px;
    color: #4b5563;
  }
  
  .featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .featured-card {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(11, 31, 58, 0.12);
  }  
  .featured-card h3 {
    font-size: 30px;
    color: #0b1f3a;
    margin-bottom: 14px;
  }
  
  .featured-card p {
    font-size: 19px;
    color: #4b5563;
    line-height: 1.7;
  }

  .why-section {
    background-color: #f8fafc;
    padding: 90px 0;
  }
  
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .why-box {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
  }
  
  .why-box h3 {
    font-size: 28px;
    color: #0b1f3a;
    margin-bottom: 14px;
  }
  
  .why-box p {
    font-size: 19px;
    color: #4b5563;
    line-height: 1.7;
  }

  .reviews-section {
    background-color: #ffffff;
    padding: 90px 0;
  }
  
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .review-card {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
  }
  
  .review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(11, 31, 58, 0.12);
  }
  
  .review-card h3 {
    font-size: 28px;
    color: #0b1f3a;
    margin-bottom: 14px;
  }
  
  .review-card p {
    font-size: 19px;
    color: #4b5563;
    line-height: 1.7;
  }

  .cta-section {
    background-color: #f8fafc;
    padding: 90px 0 110px;
  }
  
  .cta-box {
    background: transparent;    border-radius: 24px;
    padding: 56px;
  }
  
  .cta-box h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.15;
  }
  
  .cta-box .section-description {
    color: #dbe4f0;
    max-width: 760px;
    margin-bottom: 30px;
  }

  .why-section {
    padding: 60px 0 80px;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .why-grid {
    display: flex;
    gap: 25px;
    margin-top: 30px;
  }
  
  .why-box {
    flex: 1;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .why-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  
  .why-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
  }
  
  .why-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  }
  
  .why-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .why-box p {
    color: #555;
    line-height: 1.6;
  }

  .contact-info a {    
    color: #0f4c81;       /* clean blue */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
  }
  
  
  .why-box a {
    color: #0f4c81;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .why-box a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #0f4c81;
    transition: width 0.3s ease;
  }
  
  .why-box a:hover::after {
    width: 100%;
  }
  }

  .why-section {
    background: #f8f9fb;
  }
  
  .why-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  }

  .why-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .why-section h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #0f4c81;
  }
  
  .why-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
  }