/* Offerings Section Styles */
.offerings-section {
  padding: 150px 0 80px 0;
  background: url("../assets/images/offerings-vector.svg") no-repeat;
  background-size: calc(100% - 320px) auto;
  background-position: center;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.offerings-section .container {
  margin: 0 160px;
}

.section-header {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.offerings-section .section-title {
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: #1f1f1f;
  margin: 0;
}

.section-description {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section-description p {
  color: #1f1f1f;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 24px 0;
}

.section-description p:last-child {
  margin-bottom: 0;
}

.section-description strong {
  color: #1f1f1f;
  font-weight: 700;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #f8f7ec;
  border-radius: 0;
  overflow: hidden;
}

.offering-card {
  background: none;
  padding: 0px 32px;
  text-align: left;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  min-height: 223px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* .offering-card:hover {
    background: #f8fafc;
    transform: translateY(-5px);
} */

.offering-card:nth-child(1) {
  border-right: 1px solid #cbcbd0;
}

.offering-card:nth-child(2) {
  border-right: 1px solid #cbcbd0;
}

.offering-card:nth-child(3) {
  border-right: 1px solid #cbcbd0;
}

.offering-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 50%;
  color: #ffffff;
  flex-shrink: 0;
}

.offering-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 2;
}

.offering-title {
  font-size: 20px;
  font-weight: 400;
  color: #1f1f1f;
  margin-bottom: 8px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offering-description {
  color: #1f1f1f;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
}

/* Responsive Design */
/* @media (max-width: 1024px) {
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offering-card:nth-child(1),
    .offering-card:nth-child(3) {
        border-right: 2px solid #f3f4f6;
    }
    
    .offering-card:nth-child(2) {
        border-right: none;
    }
    
    .offering-card:nth-child(1),
    .offering-card:nth-child(2) {
        border-bottom: 2px solid #f3f4f6;
    }
} */

/* @media (max-width: 768px) {
    .offerings-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
        max-width: none;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 22px;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    
    .offering-card {
        padding: 40px 30px;
        min-height: auto;
        border-right: none !important;
    }
    
    .offering-card:nth-child(1),
    .offering-card:nth-child(2),
    .offering-card:nth-child(3) {
        border-bottom: 2px solid #f3f4f6;
    }
    
    .offering-card:nth-child(4) {
        border-bottom: none;
    }
   
} */

/* @media (max-width: 480px) {
    .offerings-section .section-title {
        font-size: 28px;
    }
    
    .offerings-section .section-subtitle {
        font-size: 18px;
    }
    
    .offering-card {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
        margin: 0 20px !important;
    }
} */

/* Responsive Design */
@media (max-width: 1024px) {
  .offerings-section .container {
    margin: 0 90px;
  }
}

@media (max-width: 768px) {
  .offerings-section .container {
    margin: 0 40px;
  }
}

@media (max-width: 480px) {
  .offerings-section {
    padding: 150px 0 60px 0;
  }

  .offerings-section .container {
    margin: 0 32px;
  }

  .section-header {
    gap: 24px;
  }

  .offerings-section .section-title {
    font-size: 24px;
    line-height: 1;
  }

  .section-description p {
    font-size: 16px;
    line-height: 24px;
  }
}
