
    /* ----- RESET & VARIABLES ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
	
	.responsive-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rounded {
  border-radius: 24px;
}

/* Hero image container */
.hero-image {
  flex: 1 1 300px;
  min-height: 250px;
  border-radius: 24px;
  overflow: hidden;
}

/* Service card image */
.card-image {
  width: 100%;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
}

/* CTA banner adjustments */
.cta-banner {
  background: #f2f6fc;
  border-radius: 40px;
  padding: 40px;
  margin: 60px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.cta-image {
  flex: 1 1 250px;
  min-height: 160px;
  border-radius: 24px;
  overflow: hidden;
}

.cta-text {
  flex: 2 1 300px;
}

.cta-text h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 1.2rem;
}
	
	
    body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: #1e2b3c;
      line-height: 1.5;
    }
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }
    /* ----- HEADER & NAVIGATION ----- */
    header {
      background-color: #ffffff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
      border-bottom: 1px solid #eef2f6;
      position: sticky;
      top: 0;
      z-index: 10;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
    }
    .logo a {
      font-size: 1.5rem;
      font-weight: 700;
      color: #0b2b4a;
      text-decoration: none;
      letter-spacing: -0.02em;
    }
    .logo span {
      color: #4a6fa5;
      font-weight: 500;
    }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      color: #2c3e50;
      transition: color 0.2s;
      font-size: 1rem;
    }
    .nav-links a:hover {
      color: #1d4e89;
    }
    .btn-nav {
      background-color: #1d4e89;
      color: white !important;
      padding: 10px 22px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.95rem;
      border: none;
      transition: background-color 0.2s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-nav:hover {
      background-color: #0f3a66;
    }
    /* ----- FOOTER ----- */
    footer {
      background-color: #f9fbfd;
      border-top: 1px solid #e2e8f0;
      margin-top: 60px;
      padding: 40px 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 32px;
    }
    .footer-col p, .footer-col a {
      color: #4b5565;
      font-size: 0.95rem;
      text-decoration: none;
      line-height: 1.8;
    }
    .footer-col a:hover {
      color: #1d4e89;
      text-decoration: underline;
    }
    .footer-copyright {
      text-align: center;
      margin-top: 48px;
      color: #6c7a8a;
      font-size: 0.9rem;
      border-top: 1px dashed #d0d9e4;
      padding-top: 28px;
    }
    /* ----- BUTTONS & UTILS ----- */
    .btn-primary {
      background-color: #1d4e89;
      color: white;
      border: none;
      padding: 14px 36px;
      font-weight: 600;
      font-size: 1.1rem;
      border-radius: 60px;
      cursor: pointer;
      transition: background 0.2s;
      display: inline-block;
      text-decoration: none;
    }
    .btn-primary:hover {
      background-color: #0f3a66;
    }
    .btn-secondary {
      background-color: transparent;
      border: 1.5px solid #1d4e89;
      color: #1d4e89;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
      transition: all 0.2s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-secondary:hover {
      background-color: #eaf0f8;
    }
    .image-placeholder {
      background: #e9edf2;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #5b6f84;
      font-weight: 400;
      font-size: 1rem;
      min-height: 200px;
      width: 100%;
      border: 2px dashed #b3c2d1;
      padding: 20px;
      text-align: center;
    }
    .image-placeholder i {
      font-size: 2rem;
      margin-right: 8px;
      color: #7c8fa3;
    }
    /* cards */
    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 32px;
      margin: 48px 0;
    }
    .service-card {
      background: white;
      border-radius: 24px;
      padding: 24px;
      box-shadow: 0 12px 28px rgba(0,0,0,0.03);
      border: 1px solid #edf2f7;
      transition: transform 0.1s;
    }
    .service-card h3 {
      margin: 20px 0 12px;
      font-size: 1.4rem;
    }
    .price-tag {
      font-weight: 700;
      color: #1d4e89;
      background: #e6f0fa;
      display: inline-block;
      padding: 4px 12px;
      border-radius: 40px;
      font-size: 0.9rem;
      margin: 12px 0 4px;
    }
    /* landing hero */
    .hero {
      padding: 60px 0 40px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }
    .hero-content {
      flex: 1 1 400px;
    }
    .hero-content h1 {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 24px;
      color: #0b2b4a;
    }
    .hero-stats {
      display: flex;
      gap: 24px;
      margin: 30px 0;
      flex-wrap: wrap;
    }
    .stat-item {
      background: #f5f8fc;
      border-radius: 20px;
      padding: 16px 22px;
      font-weight: 600;
    }
    .stat-item span {
      font-size: 1.2rem;
      color: #1d4e89;
    }
    /* form page */
    .form-card {
      background: #f9fbfd;
      border-radius: 32px;
      padding: 40px;
      border: 1px solid #e2e8f0;
      margin: 40px 0;
    }
    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-bottom: 24px;
    }
    .form-group {
      flex: 1 1 250px;
    }
    .form-group label {
      font-weight: 600;
      display: block;
      margin-bottom: 6px;
      color: #2d4055;
    }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%;
      padding: 14px 18px;
      border: 1px solid #cfddee;
      border-radius: 16px;
      font-family: 'Inter', sans-serif;
      background: white;
      font-size: 1rem;
      transition: 0.15s;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: #1d4e89;
      outline: none;
      box-shadow: 0 0 0 3px rgba(29,78,137,0.1);
    }
    .btn-submit {
      background-color: #1d4e89;
      color: white;
      border: none;
      padding: 16px 40px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 1.2rem;
      cursor: pointer;
      transition: background 0.2s;
      margin-top: 20px;
    }
    .btn-submit:hover {
      background-color: #0f3a66;
    }
    /* page header */
    .page-header {
      margin: 40px 0 20px;
    }
    h2 {
      font-size: 2rem;
      font-weight: 600;
      color: #0b2b4a;
    }
    /* responsive */
    @media (max-width: 700px) {
      .header-inner {
        flex-direction: column;
        gap: 16px;
      }
      .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
      }
      .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
      }
      .hero-content h1 {
        font-size: 2.2rem;
      }
    }
  