.perksnrec-callout {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 100%;
}

.callout-circle {
  background: linear-gradient(135deg, #e8e3d3 0%, #d9d4c4 100%);
  border-radius: 50%;
  width: 450px;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.callout-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 48px;
  font-weight: 400;
  color: #2c2c2c;
  margin: 0 0 30px 0;
  line-height: 1.2;
}

.callout-text {
  font-family: 'Lato', 'Arial', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #3c3c3c;
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
}

@media (max-width: 1200px) {
  .callout-circle {
    width: 380px;
    height: 380px;
    padding: 50px;
  }
  
  .callout-title {
    font-size: 40px;
    margin-bottom: 25px;
  }
  
  .callout-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .callout-circle {
    width: 320px;
    height: 320px;
    padding: 40px;
  }
  
  .callout-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .callout-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .callout-circle {
    width: 280px;
    height: 280px;
    padding: 30px;
  }
  
  .callout-title {
    font-size: 28px;
  }
  
  .callout-text {
    font-size: 15px;
  }
}