/* Основні стилі сайту */
body { 
  font-family: 'Segoe UI', sans-serif; 
  background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 50%, #f0f0f0 100%);
  color: #333333;
  min-height: 100vh;
  position: relative;
  width: 100%;
}

/* Обгортка для всього вмісту сайту з обмеженням ширини */
body > * {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(245, 243, 255, 0.5), transparent 25%),
    radial-gradient(circle at 80% 80%, rgba(255, 250, 240, 0.5), transparent 25%);
  pointer-events: none;
  z-index: -1;
}

/* Шапка сайту */
.hero { 
  background-color: #ffffff;
  color: #333333; 
  padding: 2rem;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 1024px;
  box-sizing: border-box;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(245, 243, 255, 0.3), transparent 70%), 
              radial-gradient(circle at bottom left, rgba(255, 250, 240, 0.3), transparent 70%);
  pointer-events: none;
}

/* Контейнер шапки для гнучкого розміщення */
.header-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 2rem;
}

/* Ліва частина шапки з картинкою */
.header-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Права частина шапки з лого та текстом */
.header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Лого у шапці */
.logo-section {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 0;
}

.logo {
  max-width: 180px;
  height: auto;
}

@media (max-width: 768px) {
  .logo {
    max-width: 120px;
  }
}

/* Секція з текстом */
.text-section {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Основний контент */
.section { 
  padding: 2rem 1rem; 
  position: relative;
  color: #333333;
  width: 100%;
  max-width: 1024px;
  box-sizing: border-box;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(245, 243, 255, 0.3), transparent 70%), 
              radial-gradient(circle at bottom left, rgba(255, 250, 240, 0.3), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* FAQ стилі */
.faq button { 
  text-align: left; 
}

/* Секції з фоном */
.bg-light {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Головна фотографія в хедері */
.main-hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  object-fit: cover;
}

/* Кнопки */
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  cursor: pointer;
}

/* Стилі для кнопок вибору суми */
.amount-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.amount-button {
  flex: 1;
  min-width: 100px;
  padding: 0.75rem 1rem;
  background-color: #ffffff;
  color: #333333;
  border: 1px solid rgba(208, 200, 181, 0.4);
  font-weight: 500;
  transition: all 0.2s ease;
}

.amount-button:hover {
  background-color: #f9f5ed;
  border-color: rgba(208, 200, 181, 0.7);
  transform: translateY(-2px);
}

.amount-button.active {
  background: linear-gradient(135deg, #f7f7f7 0%, #ede8dd 100%);
  border-color: #d0c8b5;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }
  
  .header-left, .header-right {
    flex: none;
  }
  
  .text-section {
    text-align: center;
  }
  
  .logo-section {
    justify-content: center;
  }
}

.btn-primary {
  color: #333;
  background-color: #d0c8b5;
  border-color: #c4b99e;
  box-shadow: 0 4px 15px rgba(208, 200, 181, 0.25);
}

.btn-primary:hover {
  background-color: #a39274;
  border-color: #7a6c56;
  box-shadow: 0 4px 20px rgba(163, 146, 116, 0.35);
}

.btn-light {
  color: #333;
  background-color: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
}

.btn-light:hover {
  background-color: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.1);
  color: #333;
}

.btn-subscribe {
  color: #333;
  background: linear-gradient(135deg, #f7f7f7 0%, #ede8dd 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem 2rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-subscribe:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ede8dd 0%, #f7f7f7 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}

.btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
}

.btn-subscribe:hover:before {
  opacity: 1;
}

@media (max-width: 768px) {
  .btn-subscribe {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
}

/* Вирівнювання та відступи для групи кнопок CTA */
.cta-group {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Вирівнювання в шапці (ліворуч) та в центрованих секціях */
.text-section .cta-group {
  justify-content: flex-start;
}

.text-center .cta-group {
  justify-content: center;
}

.text-center .cta-group a {
  margin-bottom: 10px;
}

/* Утиліти текст-центру якщо відсутні */
.text-center {
  text-align: center;
}

@media (max-width: 768px) {
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-group .btn {
    width: 100%;
  }
}

/* Обмеження ширини сайту */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Контейнер */
.container {
  width: 100%;
  max-width: 1024px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

/* FAQ аккордеон */
.accordion-item {
  border: 1px solid rgba(208, 200, 181, 0.3);
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  border-color: rgba(208, 200, 181, 0.5);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  display: block;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background-color: #ffffff;
  color: #333333;
  font-weight: 500;
  border: 0;
  cursor: pointer;
  position: relative;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(208, 200, 181, 0.15);
  transition: all 0.3s ease;
}

.accordion-button:hover {
  background-color: rgba(249, 245, 237, 0.7);
}

.accordion-button:not(.collapsed) {
  background-color: #f9f5ed;
  font-weight: 600;
  color: #222222;
}

.accordion-button:not(.collapsed)::after {
  content: '−';
  position: absolute;
  right: 1.5rem;
  color: #a39274;
  font-size: 1.5rem;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-button.collapsed::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  color: #a39274;
  font-size: 1.5rem;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-collapse.show {
  max-height: 1000px;
}

.accordion-body {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: #444444;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Форма */
.form-label {
  margin-bottom: 0.5rem;
  display: inline-block;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #d0c8b5;
  box-shadow: 0 0 0 0.2rem rgba(208, 200, 181, 0.25);
  outline: none;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  appearance: none;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-label {
  margin-bottom: 0;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #777777;
}

.form-text a {
  color: #a39274;
  text-decoration: none;
}

.form-text a:hover {
  color: #7a6c56;
  text-decoration: underline;
}

/* Сітка */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Стилі для каруселі */
.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
  height: 500px;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Стиль для 13-ї фотографії - розміщення зверху */
.carousel-slide:nth-child(13) img {
  object-position: top;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px 15px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-slide:hover .carousel-caption {
  opacity: 1;
}

/* Стилі для кнопок навігації каруселі */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333333;
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.carousel-button:hover {
  background-color: #d0c8b5;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.15);
}

.carousel-button-prev {
  left: 15px;
}

.carousel-button-next {
  right: 15px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
  gap: 8px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dot.active {
  background-color: #a39274;
}

@media (max-width: 768px) {
  .carousel {
    height: 300px;
  }
    .carousel-button {
    width: 36px;
    height: 36px;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.9);
  }
  
  .carousel-button-prev {
    left: 10px;
  }
  
  .carousel-button-next {
    right: 10px;
  }
  
  .carousel-dots {
    display: none; /* Приховуємо точки на мобільних пристроях */
  }
}

/* Допоміжні класи */
.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.text-center {
  text-align: center;
}

.text-white {
  color: #333333;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.text-gray-700 {
  color: rgba(51, 51, 51, 0.7);
}

.text-gray-800 {
  color: rgba(51, 51, 51, 0.9);
}

.list-disc {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Footer */
footer { 
  background-color: #f7f5f0; 
  color: #333333; 
  padding: 2rem 1rem; 
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 1024px;
  box-sizing: border-box;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(245, 243, 255, 0.3), transparent 70%), 
              radial-gradient(circle at bottom left, rgba(255, 250, 240, 0.3), transparent 70%);
  pointer-events: none;
}

footer a {
  color: #a39274;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #7a6c56;
  text-decoration: underline;
}

/* Стилі для розділу "Що це?" */
.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 2rem;
}

.info-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.8rem;
  width: 300px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.info-card:hover .info-card-title {
  background: linear-gradient(90deg, #e2ca71, #ee796d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 0;
  opacity: 0;
  transition: height 0.4s ease, opacity 0.4s ease;
  border-radius: 3px;
}

.info-card.purple::before {
  background: linear-gradient(to bottom, #a23c8e, transparent);
}

.info-card.green::before {
  background: linear-gradient(to bottom, #37b49e, transparent);
}

.info-card.blue::before {
  background: linear-gradient(to bottom, #46bdd6, transparent);
}

.info-card.coral::before {
  background: linear-gradient(to bottom, #ee796d, transparent);
}

.info-card:hover::before {
  height: 70%;
  opacity: 1;
}

.info-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 12px;
}

.info-card:hover::after {
  opacity: 1;
}

.info-card.purple {
  background: linear-gradient(140deg, #f8eaf5 0%, #ecd5e6 100%);
  border-color: #d9b0ce;
  box-shadow: 0 4px 20px rgba(162, 60, 142, 0.15);
}

.info-card.purple:hover {
  box-shadow: 0 8px 25px rgba(162, 60, 142, 0.25);
}

.info-card.green {
  background: linear-gradient(140deg, #e9f7f4 0%, #d5f0ea 100%);
  border-color: #b0d9d0;
  box-shadow: 0 4px 20px rgba(55, 180, 158, 0.15);
}

.info-card.green:hover {
  box-shadow: 0 8px 25px rgba(55, 180, 158, 0.25);
}

.info-card.blue {
  background: linear-gradient(140deg, #eaf6fa 0%, #d6eef6 100%);
  border-color: #b0d9e6;
  box-shadow: 0 4px 20px rgba(70, 189, 214, 0.15);
}

.info-card.blue:hover {
  box-shadow: 0 8px 25px rgba(70, 189, 214, 0.25);
}

.info-card.coral {
  background: linear-gradient(140deg, #fbefed 0%, #f7e0dd 100%);
  border-color: #f0bcb5;
  box-shadow: 0 4px 20px rgba(238, 121, 109, 0.15);
}

.info-card.coral:hover {
  box-shadow: 0 8px 25px rgba(238, 121, 109, 0.25);
}

.info-card.purple .info-card-text {
  color: #8c3579;
}

.info-card.green .info-card-text {
  color: #2e9b87;
}

.info-card.blue .info-card-text {
  color: #3ca2b8;
}

.info-card.coral .info-card-text {
  color: #d16a5e;
}

.info-card-title {
  color: #333333;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 18px;
}

.info-card-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.info-card.purple .info-card-title::before {
  background-color: #a23c8e;
}

.info-card.green .info-card-title::before {
  background-color: #37b49e;
}

.info-card.blue .info-card-title::before {
  background-color: #46bdd6;
}

.info-card.coral .info-card-title::before {
  background-color: #ee796d;
}

.info-card-subtitle {
  color: #666666;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.info-card-text {
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.5;
}

.dark-section {
  background-color: #f7f5f0;
  color: #333333;
  padding: 4rem 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dark-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(245, 243, 255, 0.3), transparent 70%), 
              radial-gradient(circle at bottom left, rgba(255, 250, 240, 0.3), transparent 70%);
  pointer-events: none;
}

.dark-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.06), transparent);
  pointer-events: none;
}

.section-title {
  color: #333333;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.dark-section .section-title {
  color: #333333;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

@media (max-width: 768px) {
  .info-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .info-card {
    width: 100%;
    max-width: 350px;
    padding: 1.25rem;
  }
  
  .dark-section {
    padding: 2.5rem 1rem;
  }
}

/* Додаткові медіа-запити для iPhone 12 Pro та менших пристроїв */
@media (max-width: 428px) {
  .info-cards {
    padding: 0 10px;
  }
  
  .info-card {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 1.2rem 1rem;
  }
  
  .dark-section {
    padding: 2rem 0.5rem;
  }
  
  .dark-section .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .dark-section .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .info-card-title {
    font-size: 1.15rem;
  }
  
  .info-card-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  #supportForm {
    padding: 0 4vw;
    box-sizing: border-box;
    max-width: 100vw;
  }
  .row {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
  .col-md-4 {
    max-width: 100%;
    flex: 1 1 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .form-control, .form-select {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
  }
}

@media (max-width: 400px) {
  #supportForm {
    padding: 0 2vw;
  }
}

/* Спеціальні стилі для секції FAQ в темній секції */
.dark-section .accordion {
  max-width: 1024px;
  margin: 0 auto;
  padding: 1rem 0.5rem;
  position: relative;
}

.dark-section .accordion::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(208, 200, 181, 0.4), transparent);
}

.dark-section .accordion-item:first-child {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.dark-section .accordion-item:last-child {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

@media (max-width: 768px) {
  .dark-section .accordion {
    padding: 0.5rem 0;
  }
  .accordion-button {
    padding: 1rem 1.25rem;
  }
  .accordion-body {
    padding: 1.25rem;
  }
}
