:root {
      --primary: #1f3a5f;
      --accent: #c8a96a;
      --bg: #f9f9f9;
      --text: #333;
      --light: #ffffff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    header {
      background: var(--light);
      border-bottom: 1px solid #ddd;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header h1 {
      font-size: 1.5rem;
      color: var(--primary);
    }

    nav a {
      margin-left: 20px;
      text-decoration: none;
      color: var(--text);
      font-weight: 500;
    }

    nav a:hover {
      color: var(--accent);
    }
    html {
      scroll-behavior: smooth;
    }

    .hero {
      padding: 100px 40px;
      background: #ffffff;
    }

    .hero-content {
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 40px;
      align-items: center;
    }

    .hero-text h1 {
      font-size: 1.8rem;
      color: #888;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .hero-text h2 {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .hero-text p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      max-width: 500px;
    }

    .hero-buttons a {
      text-decoration: none;
      padding: 12px 24px;
      margin-right: 10px;
      border-radius: 5px;
      font-weight: 500;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    /* 📱 MOBILE FIX */
    @media (max-width: 768px) {
      .hero-buttons {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-buttons a {
        width: 100%;
        text-align: center;
      }
    }

    .btn-primary {
      background: var(--primary);
      color: white;
    }

    .btn-secondary {
      background: var(--primary);
      color: white;
    }

    .btn-tertiary {
      background: var(--primary);
      color: white; 
    }

    .hero-image img {
      width: 100%;
      max-width: 320px;
      border-radius: 10px;
      object-fit: cover;
    }
    .hero-trust {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: 2.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(0,0,0,0.08);
      flex-wrap: wrap;
      text-align: center;
    }

    .trust-item {
      min-width: 180px;
    }

    .trust-item strong {
      display: block;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .trust-item span {
      font-size: 0.9rem;
      color: #666;
    }

    .section {
      padding: 60px 40px;
      max-width: 1000px;
      margin: auto;
    }

    .section h3 {
      margin-bottom: 20px;
      color: var(--primary);
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px; 
      margin-top: 20px;
    }

    .card {
      background: var(--light);
      border: 1px solid #e6e6e6;
      border-radius: 14px;
      padding: 20px;
      transition: all 0.25s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .card h4 {
      font-size: 16px;
      margin-bottom: 10px;
      color: #1a1a1a;
    }

    .card a {
      display: inline-block;
      margin-top: 10px;
      color: var(--primary);
      font-weight: bold;
      text-decoration: none;
      border-bottom: 1px solid transparent;
    }

    .card a:hover {
      border-bottom: 1px solid var(--primary);
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }

    .card p {
      font-size: 14px;
      color: #555;
      line-height: 1.4;
    }


    .card.highlight {
      border-left: 4px solid #1f3a5f;
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
      box-shadow: 0 6px 25px rgba(31,58,95,0.12);
    }

    .card.highlight h4 {
      color: #1f3a5f;
    }

    .cta {
      text-align: center;
      padding: 60px 20px;
    }

    .cta a {
      display: inline-block;
      padding: 12px 25px;
      background: var(--primary);
      color: white;
      text-decoration: none;
      border-radius: 5px;
    }

    .contact-form {
      max-width: 500px;
      margin: 30px auto 0;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 1rem;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: var(--primary);
    }

    .contact-form button {
      padding: 12px;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
    }

    .contact-form button:hover {
      opacity: 0.9;
    }


    .footer {
      background: #0f172a;
      color: white;
      padding: 3rem 2rem;
      margin-top: 4rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2rem;
      max-width: 1100px;
      margin: auto;
    }

    .footer h3, .footer h4 {
      margin-bottom: 0.8rem;
    }

    .footer p {
      color: #cbd5e1;
      font-size: 0.95rem;
    }

    .footer-newsletter input {
      width: 100%;
      padding: 0.6rem;
      margin-top: 0.5rem;
      border: none;
      border-radius: 6px;
    }

    .footer-newsletter button {
      margin-top: 0.5rem;
      padding: 0.6rem 1rem;
      background: #3b82f6;
      border: none;
      color: white;
      border-radius: 6px;
      cursor: pointer;
    }

    .footer-right a {
      display: block;
      color: #cbd5e1;
      margin-bottom: 0.4rem;
      text-decoration: none;
    }

    .footer-right a:hover {
      color: white;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 1rem;
      font-size: 0.85rem;
      color: #94a3b8;
    }

