.section-header-gray{
  background-color: #F9FBFC;
  margin-bottom: 20px;
}
.niszczenie-dokumentow-blok h2 {
    font-size: 28px;
    margin: 0 0 16px 0;
    color: #d9534f;
  }
  .bg-lavender{
    background: lavenderblush;
  }
  .bd-right-danger{
    border-right: 1px solid #d9534f;
  }
  .bd-left-danger{
    border-left: 1px solid #d9534f;
  }
  .bd-bottom-danger{
    border-bottom: 1px solid #d9534f;
  }
  .niszczenie-dokumentow-blok h3 {
    font-size: 18px;
    margin: 0 0 10px 0;
    color: #d9534f;
  }
  .niszczenie-dokumentow-blok p {
    margin: 0 0 12px 0;
  }
  .niszczenie-dokumentow-blok .box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 22px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  }
  .niszczenie-dokumentow-blok .lead {
    font-size: 17px;
    color: #374151;
  }
  .niszczenie-dokumentow-blok table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
  }
  .niszczenie-dokumentow-blok thead th {
    background: #d9534f;
    border-bottom: 2px solid #d9534f;
    color: #fff;
    text-align: left;
    padding: 14px;
    font-weight: 700;
  }
  .niszczenie-dokumentow-blok tbody td {
    padding: 13px 14px;
    vertical-align: top;
  }
  .niszczenie-dokumentow-blok tbody tr:nth-child(even) {
    background: #cfcfcf;
  }
  .niszczenie-dokumentow-blok details {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    padding: 14px 16px;
    margin-bottom: 12px;
  }
  .niszczenie-dokumentow-blok summary {
    cursor: pointer;
    font-weight: 700;
    color: #d9534f;
    outline: none;
  }
  .niszczenie-dokumentow-blok summary::-webkit-details-marker {
    display: none;
  }
  .niszczenie-dokumentow-blok .cta {
    background: linear-gradient(135deg, #d9534f, #145da0);
    color: #fff;
    border-radius: 16px;
    padding: 24px;
  }
  .niszczenie-dokumentow-blok .cta a {
    display: inline-block;
    background: #ffffff;
    color: #d9534f;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 10px;
    margin-top: 10px;
  }
  .niszczenie-dokumentow-blok .note {
    font-size: 14px;
    color: #6b7280;
  }
  @media (max-width: 700px) {
    .niszczenie-dokumentow-blok {
      padding: 14px;
    }
    .niszczenie-dokumentow-blok h2 {
      font-size: 24px;
    }
    .niszczenie-dokumentow-blok table,
    .niszczenie-dokumentow-blok thead,
    .niszczenie-dokumentow-blok tbody,
    .niszczenie-dokumentow-blok th,
    .niszczenie-dokumentow-blok td,
    .niszczenie-dokumentow-blok tr {
      display: block;
      width: 100%;
    }
    .niszczenie-dokumentow-blok thead {
      display: none;
    }
    .niszczenie-dokumentow-blok tbody tr {
      margin-bottom: 12px;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      overflow: hidden;
    }
    .niszczenie-dokumentow-blok tbody td {
      border: none;
      border-bottom: 1px solid #e5e7eb;
    }
    .niszczenie-dokumentow-blok tbody td:last-child {
      border-bottom: none;
    }
  }

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2, h2.navyblue {
    font-size: 48px;
    font-weight: 700;
    color: #082f6b;
    margin-bottom: 20px;
}

h2.navyblue {
  font-size: 36px;
}

.section-header p {
    max-width: 650px;
    margin: 0 auto;
    color: #64748b;
    font-size: 18px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 30px;
}

.service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: #198754;
}

.icon {
    width: 56px;
    height: 56px;
    background: #dcfce7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    color: #198754;
}

.service-card h3 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
}

/* Tablet */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 38px;
    }
}

/* Mobile */

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .service-card {
        padding: 25px;
    }
}


/*process*/
.process {
  background: linear-gradient(
      135deg,
      #240202 0%,
      #450707 50%,
      #690b0b 100%
  );

  padding: 120px 20px;
  color: #fff;
  margin-bottom: 30px;
}

.container {
  width: 80vw;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;

  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);

  color: #ffb4b4;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-header h2 {
  margin-top: 24px;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
}

.section-header p {
  margin-top: 18px;
  font-size: 20px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;

  padding: 20px 34px;
  transition: .3s ease;
}

.process-card:hover {
  transform: translateY(-8px);

  background: rgba(255,255,255,.08);

  border-color: rgba(255,120,120,.35);

  box-shadow:
      0 20px 40px rgba(0,0,0,.25),
      0 0 40px rgba(255,70,70,.12);
}

.number {
  font-size: 60px;
  font-weight: 800;
  color: #ffd4d4;
  margin-bottom: 24px;
}

.process-card h3 {
  margin-bottom: 18px;
  color: #fff;
}

.process-card p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,.75);
}

/* Tablet */

@media (max-width: 1100px) {
  .process-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 768px) {

  .section-header h2 {
      font-size: 38px;
  }

  .section-header p {
      font-size: 17px;
  }

  .process-grid {
      grid-template-columns: 1fr;
  }

  .number {
      font-size: 48px;
  }
}
/*TRUST*/
.trust {
  margin-bottom: 30px;
}
.trust .service-card {
  padding: 12px;
}

.trust .service-card .icon{
  margin-bottom: 0px;
}
.badge-danger {
  background: rgba(255, 180, 180, .5);
  border: 1px solid #dc3545;

  color: #dc3545;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.float-start {
  float: left;
  margin-right: 10px;
}
.float-end {
  float: right;
  margin-left: 10px;
}

/* Tablet */

@media (max-width: 992px) {
  .trust-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 768px) {
  .trust-grid {
      grid-template-columns: 1fr;
  }

  .service-card {
      padding: 25px;
  }
}

.table tbody  tr td, .table  tbody  tr  th, .table  tfoot  tr  td, .table  tfoot  tr  th, .table  thead  tr  td, .table  thead  tr  th
{
  border-top: 1px solid #d9534f;;
}

.table  thead  tr  th{
  border-bottom: 2px solid #d9534f;
}

.input-error {
  border-color: #c0392b !important;
}
.field-error {
  color: #c0392b;
  font-size: 13px;
  margin-top: 4px;
}
.general-error {
  background: #fdecea;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1000;
}
.modal-overlay.visible {
  opacity: 1;
}

.modal-box {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  transform: translateY(-20px);
  transition: transform 0.2s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.modal-overlay.visible .modal-box {
  transform: translateY(0);
}

.modal-icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  background: #e6f4ea;
  color: #1e7e34;
  border-radius: 50%;
  font-size: 28px;
  margin: 0 auto 16px;
}

.modal-box h3 {
  margin: 0 0 8px;
  color: #1e2a38;
}
.modal-box p {
  color: #555;
  margin: 0 0 24px;
  font-size: 14px;
}

.modal-close {
  background: #2c3e50;
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
.modal-close:hover {
  background: #1a252f;
}