:root {
      --primary: #1f2937;
      --accent: #2563eb;
      --accent2: #e81f36;
      /*--bg: #f9fafb;*/
      --bg: #f3f6f8;
      --text: #111827;
      --muted: #6b7280;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    p a {
      text-decoration: underline;
    }
    

    /* ===== Header & Navigation ===== */

    header {
      background: white;
      border-bottom: 1px solid var(--accent);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0.3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-weight: 700;
      font-size: 1.1rem;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 1.5rem;
    }

    nav a {
      font-weight: 500;
      color: var(--primary);
    }

    nav a.active {
      color: var(--accent);
    }

    nav a:hover {
      color: var(--accent);
    }

    /* ===== Mobile Menu ===== */

    .menu-toggle {
      display: none;
    }

    .menu-icon {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    span.error {
      color: red; display: none
    }

    

    /* ===== Sections ===== */

    main {
      min-height: calc(100vh - 200px);
    }

    .container {
      max-width: 1100px;
      margin: 1rem auto;
      padding: 0rem 1rem;
    }

    .hero {
      text-align: center;
      padding: 2rem 1rem 1rem;
      margin: 2rem auto;
      max-width: 1072px;
    }

    .hero-inner {
      text-align: left;
      padding: 2rem 1rem 1rem;
      margin: 0 auto;
      max-width: 1072px;
    }

    .hero-inner h1 {
      text-align: center;
      margin-bottom: 1rem;
    }

    .hero-inner p {
      margin: 0 auto;
    }

    .hero-inner img {
      max-width: 140px;
      float: left;
      margin-right: 1.5rem;
    }

    .contact-image {
      max-width: 50px!important;
    }

    .contact-icon {
      max-width: 50px!important;
    }

    .inner {
      text-align: left;
      padding: 2rem 1rem 0rem;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      background: white;
      margin: 2rem auto;
      max-width: 1072px;
    }

    .contact {
      text-align: right;
      padding-top: 0.5rem;
    }

    .hero h1 {
      font-size: 2.6rem;
      margin-bottom: 1rem;
    }

    .hero h2 {
      font-size: 1.7rem;
      font-weight: normal;
    }

    .hero p {
      max-width: 600px;
      margin: 0 auto 1rem;
      color: var(--muted);
    }

    .inner p {
      max-width: 600px;
      margin: 0 0 2rem;
      color: var(--muted);
    }

    .cta {
      display: inline-block;
      background: var(--accent);
      color: white;
      padding: 0.6rem 0rem;
      border-radius: 6px;
      font-weight: 600;
      text-decoration: none;
      width: 10rem;
      text-align: center;
      border-color: var(--text);
      border-width: 1px;
      border-style: solid;
      margin: 0.5rem 0.3rem;
    }

    .white {
      background: white;
      color: var(--accent);
      
    }

    .cta-w11 {
      width: 11rem;
    }

    .colored-block {
      display: inline-block;
      background: white;
      color: var(--accent);
      padding: 0.75rem 1.5rem;
      font-weight: 600;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2rem;
      margin-bottom: 15px;
    }

    .grid-inner {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1rem;
      margin-bottom: 15px;
    }

    .card {
      background: white;
      padding: 1.5rem;
      border-radius: 8px;
      border: 1px solid #e5e7eb;
    }

    .card img {
      max-width: 75px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .center {
      text-align: center;
      margin-bottom: 1rem;
    }

    .container>.card{
      margin-top: 1rem;
    }

    /* ===== Form Inputs ===== */

    input[type="text"] {
      padding: 0.75rem;
      border: 1px solid #e5e7eb;
      border-radius: 6px;
      font-size: 1rem;
      font-family: inherit;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    input.w {
      width: 100%;
    }

    input.w83 {
      width: 83%;
    }

    input.w16 { 
      width: 16%; 
    }

    .contact-cta {
      text-align: center; padding-bottom: 5px
    }

    .contact-info-block {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 48px;
    }

    .contact-info-section {
      padding-left: 5rem;
    }



    input[type="text"]:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    input[type="text"]::placeholder {
      color: var(--muted);
    }

    /* ===== Textarea ===== */

    textarea {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #e5e7eb;
      border-radius: 6px;
      font-size: 1rem;
      font-family: inherit;
      min-height: 200px;
      resize: vertical;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    textarea:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    textarea::placeholder {
      color: var(--muted);
    }

    footer {
      border-top: 1px solid #e5e7eb;
      background: white;
      text-align: center;
      padding: 2rem 1rem;
      color: var(--muted);
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid #e5e7eb;
        display: none;
      }

      nav li {
        border-top: 1px solid #e5e7eb;
      }

      nav a {
        display: block;
        padding: 1rem;
      }

      .menu-icon {
        display: block;
        order: 2;
      }

      .menu-toggle:checked + nav ul {
        display: flex;
      }

      .contact {
        text-align: left !important;
        padding-left: 0.2rem;
      }

      .hero {
        margin: 1rem auto;
      }

      input.w16 { 
      width: 15%; 
    }

    }