* {
  box-sizing: border-box;
}

/* Head section - responsive */
.head {
  padding: 3rem 1rem;
  text-align: center;
  background-color: #f5f5f5;
}

.head p {
  padding-bottom: 1rem;
  color: #606060;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-family: "CanvaSans", sans-serif;
  padding-right: clamp(1rem, 10vw, 12rem);
  padding-left: clamp(1rem, 10vw, 12rem);
  line-height: 1.6;
}

.head .divider {
  height: 1.5px;
  width: clamp(25%, 15vw, 25%);
  margin: 0 auto;
  background-color: #606060;
}

/* Hero section - fully responsive */
.s-hero {
  padding: 0 clamp(1rem, 5vw, 12rem);
  background-color: #f5f5f5;
  padding-bottom: 2rem;
}

.s-hero h2 {
  font-family: "PlayfairDisplay", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #2e2e2e;
  padding: 0 clamp(0.5rem, 3vw, 4rem) 2rem clamp(0.5rem, 3vw, 4rem);
  text-align: center;
  line-height: 1.3;
}

.s-hero h2 span {
  color: #f54078;
}

.s-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  gap: 2rem;
  max-width: 1200px;
}

.s-left,
.s-b-le {
  flex: 1;
}

.s-left img,
.s-b-le img {
  height: auto;
  max-height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  padding: 0;
}

.s-right {
  flex: 1;
  padding: 1rem 0;
}

.s-right p {
  font-family: "CanvaSans", sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: #2e2e2e;
  font-weight: 300;
  text-align: justify;
  line-height: 1.7;
  margin: 0;
}

/* Buttons section - responsive grid */
.s-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(15px, 3vw, 20px);
  padding: 2rem clamp(1rem, 5vw, 12rem);
  max-width: 1200px;
  margin: 0 auto;
}

.s-button {
  background-color: #f54078;
  color: #fff;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 8px;
  transition: transform 0.2s, background-color 0.3s, box-shadow 0.3s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(100px, 15vw, 120px);
  cursor: pointer;
}

.s-button p {
  margin: 0;
  font-weight: 500;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.4;
}

.s-button:hover {
  background-color: #ff2e91;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Benefits section - responsive */
.s-benefits {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem clamp(1rem, 5vw, 12rem);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.s-b-le {
  width: 100%;
  text-align: center;
}

.s-benefits .s-b-ri {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.s-b-ri h2 {
  font-family: "PlayfairDisplay", serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 400;
  color: #f54078;
  margin-bottom: 1rem;
}

.s-b-ri p {
  font-family: "CanavaSans", sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: 400;
  color: #2e2e2e;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.faqs-section {
  width: 100%;
  padding: 2rem clamp(1rem, 5vw, 2rem);
  position: relative;
}

.faqs-container {
  max-width: 900px;
  margin: 0 auto;
}

.faqs-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.faqs-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  color: #f54078;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(255, 111, 145, 0.1);
  font-family: "PlayfairDisplay", serif;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2vw, 10px);
}

.faq-item {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
  border-color: #f54078;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.faq-question {
  width: 100%;
  padding: clamp(16px, 4vw, 24px);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 600;
  color: #f54078;
  transition: background-color 0.3s ease;
  line-height: 1.4;
  gap: 1rem;
}

.faq-question:hover {
  background: rgba(255, 111, 145, 0.05);
}

.faq-question:focus {
  outline: 3px solid #f54078;
  outline-offset: -3px;
}

.faq-toggle {
  width: clamp(28px, 6vw, 32px);
  height: clamp(28px, 6vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f54078;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}

.faq-toggle:hover {
  background: #e63e6b;
  transform: scale(1.1);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  width: clamp(12px, 3vw, 16px);
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.faq-toggle::after {
  transform: rotate(90deg);
}

.faq-question.active .faq-toggle::after {
  transform: rotate(0deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #fff;
}

.faq-answer.active {
  max-height: 400px;
  padding: 0 clamp(16px, 4vw, 28px) clamp(16px, 4vw, 28px)
    clamp(16px, 4vw, 28px);
}

.faq-answer-text {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: #555;
  line-height: 1.7;
  font-weight: 400;
  border-top: 1px solid #e0e0e0;
  padding-top: clamp(16px, 3vw, 20px);
}

/* Base styles */
:root {
  --accent: #f54078;
  --accent-dark: #e02e65;
  --text: #333;
  --radius: 10px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  --font-heading: "Playfair Display", serif;
}

/* Layout container */
.form {
  padding: 2rem clamp(1rem, 5vw, 2rem);
  max-width: 600px;
  margin: 0 auto;
}

.form h2 {
  font-family: "PlayfairDisplay", serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: #f54078;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
}

.contact-form {
  background: #fff;
  border-radius: clamp(1rem, 5vw, 3rem);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  color: #333;
  margin: 12px 0 6px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: clamp(10px, 2.5vw, 12px) clamp(12px, 3vw, 14px);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-family: inherit;
  margin-bottom: 6px;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: #fafafa;
  width: 100%;
}

.contact-form textarea {
  min-height: clamp(100px, 20vw, 140px);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f54078;
  box-shadow: 0 0 0 3px rgba(245, 64, 120, 0.1);
  background-color: #fff;
}

/* Button */

.btn {
  background: #f54078;
  color: white;
  border: none;
  padding: clamp(10px, 2.5vw, 12px) clamp(16px, 4vw, 20px);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 16px;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  align-self: flex-start;
  min-width: 120px;
}

.btn:hover {
  background: #e63e6b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.btn:active {
  transform: translateY(0);
}

/* Status messages */
.status {
  margin-top: 1rem;
  padding: clamp(0.5rem, 2vw, 0.75rem);
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  font-size: clamp(0.85rem, 2vw, 0.9rem);
}

.status.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.status.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .form-section {
    flex-direction: column;
    padding: 1.5rem;
  }

  .form h2 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) {
  .s-container {
    flex-direction: row;
    align-items: center;
  }

  .s-left {
    flex: 55%;
  }

  .s-right {
    flex: 45%;
    padding: 1rem 8rem 1rem 2rem;
  }

  .s-right p {
    text-align: justify;
  }

  .s-benefits {
    flex-direction: row;
    align-items: center;
  }

  .s-b-le {
    flex: 55%;
  }

  .s-benefits .s-b-ri {
    flex: 45%;
    text-align: left;
    padding-left: 2rem;
  }

  .s-buttons {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Desktop improvements */
@media (min-width: 1024px) {
  .s-buttons {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-question {
    align-items: center;
  }

  .faq-toggle {
    margin-top: 0;
  }
}

/* Large screen optimizations */
@media (min-width: 1200px) {
  .s-hero {
    padding: 0 8rem;
    padding-bottom: 2rem;
  }

  .s-buttons {
    padding: 2rem 8rem;
  }

  .s-benefits {
    padding: 2rem 8rem;
  }
}

/* Small mobile optimizations */
@media (max-width: 480px) {
  .head {
    padding: 0rem 0.5rem;
    padding-top: 1.5rem;
  }

  .s-hero {
    padding: 1.5rem 0.5rem;
  }

  .s-hero h2 {
    margin-left: 0;
    padding: 0 0 1.5rem 0;
  }

  .s-buttons {
    padding: 1.5rem 0.5rem;
    grid-template-columns: 1fr;
  }

  .s-benefits {
    padding: 1.5rem 0.5rem;
  }

  .faqs-section {
    padding: 1.5rem 0.5rem;
  }

  .form {
    padding: 1.5rem 0.5rem;
  }

  .contact-form {
    border-radius: 1rem;
    padding: 1.5rem;
  }

  .btn {
    width: 100%;
    align-self: stretch;
  }
}

/* Landscape phone improvements */
@media (max-width: 768px) and (orientation: landscape) {
  .s-hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .s-left img {
    max-height: 200px;
  }

  .faqs-title {
    font-size: 2.5rem;
  }
}

/* Print styles */
@media print {
  .s-button:hover,
  .faq-item:hover,
  .btn:hover {
    transform: none;
    box-shadow: none;
  }

  .contact-form {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .faq-item {
    border-width: 3px;
  }

  .s-button {
    border: 2px solid #fff;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .s-button,
  .faq-item,
  .btn,
  .faq-toggle,
  .faq-answer {
    transition: none;
  }

  .s-button:hover,
  .faq-item:hover,
  .btn:hover {
    transform: none;
  }
}

/* Focus visible improvements for accessibility */
.s-button:focus-visible,
.btn:focus-visible {
  outline: 3px solid #f54078;
  outline-offset: 2px;
}

/* Ensure touch targets are large enough */
@media (max-width: 768px) {
  .faq-question {
    min-height: 44px;
  }

  .faq-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  .btn {
    min-height: 44px;
  }
}
