:root {
      --addsure-blue: #0d6efd;
      --addsure-blue-hover: #0b5ed7;
      --light-bg: #f9fafb;
      --card-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
      --border-radius: 16px;
    }

    body {
      font-family: 'Poppins', system-ui, -apple-system, sans-serif;
      background-color: #ffffff;
      color: #212529;
      overflow-x: hidden;
      font-weight: 400;
    }

    /* === Logo Navbar === */
    .logo-navbar {
      width: 100%;
      padding: 1.25rem 0;
      background: white;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      margin-bottom: 3rem;
    }

    .logo-container {
      display: flex;
      justify-content: center;
    }

    .contact-logo {
      height: 56px;
      transition: transform 0.2s ease;
    }

    .contact-logo:hover {
      transform: scale(1.02);
    }

    /* === Hero Section === */
    .hero-title {
      font-weight: 700;
      font-size: 2rem;
      color: #111827;
      margin-bottom: 2.5rem;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .hero-title {
        font-size: 2.25rem;
      }
    }

    /* === Contact Cards === */
    .contact-card {
      max-width: 520px;
      width: 100%;
      padding: 2rem;
      border-radius: var(--border-radius);
      background: white;
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.25rem;
      margin: 1.5rem auto;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .contact-icon {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(13, 110, 253, 0.1);
      border-radius: 50%;
      color: var(--addsure-blue);
    }

    .contact-title {
      font-weight: 600;
      font-size: 1.25rem;
      color: #1f2937;
    }

    .contact-text {
      font-size: 0.95rem;
      color: #4b5563;
      line-height: 1.6;
    }

    /* === Buttons === */
    .contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 600;
      padding: 0.65rem 1.5rem;
      border-radius: 12px;
      text-decoration: none;
      transition: all 0.25s ease;
      box-shadow: 0 4px 6px rgba(13, 110, 253, 0.15);
      font-family: 'Poppins', sans-serif;
    }

    .contact-btn-primary {
      background: black;
      color: white;
      border: 2px solid var(--addsure-blue);
    }

    .contact-btn-primary:hover {
      background: var(--addsure-blue-hover);
      border-color: var(--addsure-blue-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(13, 110, 253, 0.25);
    }

    /* === Form === */
    .form-section-title {
      font-weight: 700;
      margin-top: 3.5rem;
      margin-bottom: 1.75rem;
      color: #111827;
    }

    .form-label {
      font-weight: 500;
      margin-bottom: 0.5rem;
    }

    .form-control,
    .form-control:focus {
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      border: 1px solid #ced4da;
    }

    .form-control:focus {
      border-color: var(--addsure-blue);
      box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

    .btn-submit {
      background: black;
      border: 2px solid var(--addsure-blue);
      padding: 0.75rem;
      color: white;
      font-weight: 600;
      font-size: 1.05rem;
      border-radius: 12px;
      transition: background 0.25s ease;
      font-family: 'Poppins', sans-serif;
    }

    .btn-submit:hover {
      background: var(--addsure-blue-hover);
      color: white;
    }

    .form-status {
      min-height: 1.5rem;
      font-weight: 600;
    }

    .main-content {
      padding-bottom: 3rem;
    }