.guarantee-banner {
  background-color: var(--color-surface-off);
  padding: 20px 0;
  cursor: default;
}

.guarantee-content {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.guarantee-image {
  width: 200px;
  height: auto;
  margin-right: -20px;
}

.vertical-line {
  width: 2px;
  height: 120px;
  background-color: var(--color-navy);
  margin: 0 30px;
}

.guarantee-text {
  flex: 1;
}

.guarantee-text p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-navy);
  margin: 0;
}

@media (max-width: 1920px) {
    .guarantee-banner {
        padding: 40px 180px;
    }

    .guarantee-content {
        max-width: 1200px;
    }

    .guarantee-image {
        width: 150px;
    }
}

@media(max-width: 1280px) {
    .guarantee-banner {
        padding: 40px 120px;
    }
    
    .guarantee-image {
        width: 140px;
    }

    .vertical-line {
        height: 80px;
    }

    .guarantee-text p {
        font-size: 16px;
        font-weight: 600;
    }
}

@media (max-width: 980px) {
    .guarantee-banner {
        background-color: var(--color-surface-off);
        padding: 20px 60px;
    }

    .guarantee-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }
    
      .guarantee-image {
        width: 140px;
        margin-right: 0;
        margin-bottom: -10px;
    }
    
      .vertical-line {
        width: 120px;
        height: 2px;
        margin: 20px 0;
    }
    
      .guarantee-text p {
        font-size: 16px;
        font-weight: 500;
    }
}

@media (max-width: 768px) {
    .guarantee-banner {
        background-color: var(--color-surface-off);
        padding: 20px 10px;
    }
}

