 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #F5F3EE;
      --surface: #FFFFFF;
      --border: rgba(0,0,0,0.1);
      --border-hover: rgba(0,0,0,0.2);
      --text-primary: #1A1A18;
      --text-secondary: #6B6B65;
      --accent: #2D6A4F;
      --accent-light: #E8F5EE;
      --dot: #52B788;
      --radius: 14px;
      --font-display: 'Montserrat', Arial, sans-serif;
      --font-body: 'Montserrat', Arial, sans-serif;
    }

    /* body {
      background: var(--bg);
      font-family: var(--font-body);
      color: var(--text-primary);
      min-height: 100vh;
      padding: 60px 20px;
    } */

    /* .wrapper {
      max-width: 1100px;
      margin: 0 auto;
    }

    .header {
      margin-bottom: 48px;
    } */

    /* h2 {
      font-family: var(--font-display);
      font-size: clamp(22px, 3vw, 32px);
      font-weight: 400;
      letter-spacing: -0.03em;
      line-height: 1.2;
      color: var(--text-primary);
      margin-bottom: 12px;
    } */

    .subtitle {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .faq-item {
      /* background: var(--surface);
      border: 0.5px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color 0.2s, box-shadow 0.2s; */
    }

    .faq-item:hover {
      border-color: var(--border-hover);
    }

    .faq-item.open {
      /* border-color: rgba(45, 106, 79, 0.3);
      box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.06); */
    }

    .faq-btn {
      /* width: 100%; */
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      padding: 20px 24px;
      background: transparent;
      border: none;
      cursor: pointer;
      text-align: left;
    }

    .faq-btn:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: -2px;
    }

    .faq-question {
      font-family: var(--font-body);
      font-size: 26px;
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.6;
    }

    .faq-icon {
      flex-shrink: 0;
      width: 26px;
      height: 40px;
      /* border-radius: 50%; */
      /* background: var(--bg); */
      /* border: 0.5px solid var(--border); */
      background: url('../images/arrow.png');
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
      /* transition: background 0.2s, transform 0.3s ease; */
    }

    .faq-item.open .faq-icon {
        background: url('../images/arrow.png');
      /* background: var(--accent-light);
      border-color: rgba(45, 106, 79, 0.3);
      transform: rotate(180deg); */
    }

    .faq-icon svg {
      stroke: var(--text-secondary);
      transition: stroke 0.2s;
    }

    .faq-item.open .faq-icon svg {
      stroke: var(--accent);
    }

    .faq-body {
      height: 0;
      overflow: hidden;
      transition: height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-content {
        display: flex;;
        padding: 0 70px 22px;

    }
    .content-text{
        font-size: 22px;
        width: 80%;
        font-family: var(--font-display);
        font-weight: 400;
        border-bottom: 2px solid #000;
        padding-bottom: 10px;
    }

    .content-summa{
        font-size: 26px;
        width: 20%;
        font-family: var(--font-display);
        font-weight: 700;
        text-align: end;
        border-bottom: 2px solid #000;
        padding-bottom: 10px;
    }

    .divider {
      height: 0.5px;
      background: var(--border);
      margin-bottom: 16px;
    }

    .faq-content p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.75;
    }

    .faq-content p + p {
      margin-top: 10px;
    }

    .faq-content strong {
      color: var(--text-primary);
      font-weight: 500;
    }

    .dot-list {
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-top: 12px;
    }

    .dot-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--dot);
      flex-shrink: 0;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 14px;
    }

    @media (max-width: 500px) {
      .grid-2 { grid-template-columns: 1fr; }
    }

    .grid-card {
      padding: 12px 14px;
      background: var(--bg);
      border-radius: 10px;
      border: 0.5px solid var(--border);
    }

    .grid-card-title {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-primary);
      margin-bottom: 3px;
    }

    .grid-card-val {
      font-size: 13px;
      color: var(--text-secondary);
    }

    .badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 6px;
      background: var(--accent-light);
      color: var(--accent);
      margin-bottom: 10px;
    }
