/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Customer Stories Section */
.customer-stories {
  width: 100%;
  padding: 80px 20px;
  background: #fff;
  position: relative;
}

/* Dotted background (bottom-left) */
.customer-stories::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 419px;
  height: 419px;
  background: url("images/dot.png") repeat;
  opacity: 1;
  z-index: 0;
}

/* Container */
.customer-stories-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* Image */
.customer-stories-image {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.customer-stories-image img {
  width: 100%;
  max-width: 549px;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Content */
.customer-stories-content {
  flex: 1 1 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Subtitle */
.customer-stories-subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #AFAFAF;
}

/* Title */
.customer-stories-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.3;
  color: #000;
}

/* Text */
.customer-stories-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #030303;
}

/* Buttons */
.customer-stories-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.customer-stories-buttons .btn {
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 15px 25px;
  border-radius: 10px;
  border: none;
}

.customer-stories-buttons .btn-primary {
  background: #e63946;
  color: #fff;
}

.customer-stories-buttons .btn-primary:hover {
  background: #d62839;
}

.customer-stories-buttons .btn-outline {
  background: #fff;
  color: #e63946;
  border: 1px solid #e63946;
}

.customer-stories-buttons .btn-outline:hover {
  background: #e63946;
  color: #fff;
}


/* Responsive Breakpoints */
/* Tablets */
@media (max-width: 992px) {
  .customer-stories-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .customer-stories-content {
    align-items: center;
  }

  .customer-stories-title {
    font-size: 28px;
  }

  .customer-stories-text {
    font-size: 15px;
    max-width: 600px;
  }

  .customer-stories-buttons {
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .customer-stories {
    padding: 60px 15px;
  }

  .customer-stories::before {
    width: 250px;
    height: 250px;
    opacity: 0.5; /* softer on small screens */
  }

  .customer-stories-title {
    font-size: 22px;
    line-height: 1.2;
  }

  .customer-stories-text {
    font-size: 14px;
  }

  .customer-stories-buttons .btn {
    width: 100%;
    max-width: 260px;
    font-size: 14px;
    padding: 12px 20px;
  }
}
