/* Thessalique Inc — Theme inspired by hikey travel template */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
  --primary-color: #002570;
  --secondary-color: #007eff;
  --accent-color: #937a4b;
  --accent-hover: #7a6539;
  --light-cream: #f8f4ef;
  --dark-bg: #050a1e;
  --dark-footer: #282520;
  --body-color: #97a9bf;
  --text-dark: #3e3e3e;
  --heading-color: #0b0b0a;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", sans-serif;
  color: var(--heading-color);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* ── Preloader ── */
.loader-wrapper {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(147, 122, 75, 0.3);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Navbar ── */
.navbar-custom {
  background: transparent;
  padding: 18px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

.navbar-custom.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0, 37, 112, 0.08);
}

.navbar-custom .navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.navbar-custom.scrolled .navbar-brand {
  color: var(--primary-color);
}

.navbar-custom .brand-accent {
  color: var(--accent-color);
}

.navbar-custom .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px !important;
  position: relative;
}

.navbar-custom.scrolled .nav-link {
  color: var(--heading-color);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--accent-color) !important;
}

.btn-primary-custom {
  background: var(--accent-color);
  color: var(--white);
  border: 2px solid var(--accent-color);
  padding: 10px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary-custom:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 10px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: all 0.3s;
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary-color);
}

.btn-secondary-custom {
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  padding: 10px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: all 0.3s;
}

.btn-secondary-custom:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-custom.scrolled .navbar-toggler {
  border-color: var(--primary-color);
}

/* ── Hero ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 10, 30, 0.33) 0%, rgba(0, 37, 112, 0.33) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
}

.hero-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: block;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--accent-color);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Section Common ── */
.section-padding {
  padding: 100px 0;
}

.section-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.section-desc {
  color: var(--body-color);
  font-size: 17px;
  max-width: 600px;
}

.bg-cream {
  background: var(--light-cream);
}

.bg-dark-custom {
  background: var(--dark-bg);
}

/* ── Stats (ref: dark bg + glass cards) ── */
.stats-section {
  position: relative;
  padding: 80px 0;
  margin-top: 0;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: grayscale(40%);
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(5, 10, 30, 0.82), rgba(5, 10, 30, 0.88));
}

.stats-inner {
  position: relative;
  z-index: 2;
}

.stats-card-v2 {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 24px 20px;
  height: 100%;
  transition: background 0.3s, border-color 0.3s;
}

.stats-card-v2:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(197, 160, 89, 0.4);
}

.stats-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #c5a059;
}

.stats-card-content {
  flex: 1;
  min-width: 0;
}

.stats-number-v2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.stats-label-v2 {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.3;
}

/* ── Feature Cards ── */
.feature-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  height: 100%;
  border: 1px solid rgba(0, 37, 112, 0.06);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.35s;
}

.feature-card:hover {
  box-shadow: 0 12px 40px rgba(0, 37, 112, 0.12);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--light-cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--accent-color);
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--body-color);
  font-size: 15px;
  margin: 0;
}

/* ── About (ref: framed image + vision/mission) ── */
.about-section {
  background: var(--white);
}

.about-image-frame {
  background: var(--light-cream);
  border: 1px solid rgba(147, 122, 75, 0.2);
  border-radius: 20px;
  padding: 16px;
}

.about-image-inner {
  border-radius: 14px;
  overflow: hidden;
}

.about-image-inner img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.about-desc {
  margin-bottom: 28px;
}

.vision-mission-grid {
  margin-bottom: 28px;
}

.vm-card {
  height: 100%;
}

.vm-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 14px;
}

.vm-card h5 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.vm-card p {
  color: var(--body-color);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.btn-cta-plus {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--accent-color);
  color: var(--white);
  padding: 14px 14px 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  min-width: 220px;
  transition: background 0.3s;
}

.btn-cta-plus:hover {
  background: var(--accent-hover);
  color: var(--white);
}

.btn-cta-icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 14px;
  flex-shrink: 0;
}

/* ── Our Advantages ── */
.advantage-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  height: 100%;
  border: 1px solid rgba(147, 122, 75, 0.12);
  position: relative;
  transition: all 0.35s;
}

.advantage-card:hover {
  box-shadow: 0 12px 40px rgba(0, 37, 112, 0.1);
  transform: translateY(-4px);
  border-color: rgba(147, 122, 75, 0.3);
}

.advantage-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(147, 122, 75, 0.12);
  line-height: 1;
}

.advantage-icon {
  width: 56px;
  height: 56px;
  background: var(--light-cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 18px;
}

.advantage-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.advantage-card p {
  color: var(--body-color);
  font-size: 15px;
  margin: 0;
  line-height: 1.65;
}

/* ── Why Choose Us (ref: left content + framed image) ── */
.why-section {
  position: relative;
  overflow: hidden;
  background: var(--light-cream);
}

.why-image-frame {
  background: var(--white);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 8px 40px rgba(0, 37, 112, 0.08);
}

.why-image-inner {
  border-radius: 14px;
  overflow: hidden;
}

.why-image-inner img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.why-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.why-item-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
}

.why-item h5 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.why-item p {
  color: var(--body-color);
  font-size: 15px;
  margin: 0;
}

.why-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.play-video-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.play-video-link:hover {
  color: var(--accent-color);
}

.play-icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.3s;
}

.play-video-link:hover .play-icon {
  background: var(--accent-color);
  color: var(--white);
}

/* ── Testimonials (ref: left image + cream card) ── */
.testimonial-section {
  background: var(--white);
}

.testimonial-image-frame {
  background: var(--light-cream);
  border: 1px solid rgba(147, 122, 75, 0.15);
  border-radius: 20px;
  padding: 16px;
}

.testimonial-image-inner {
  border-radius: 14px;
  overflow: hidden;
}

.testimonial-image-inner img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.testimonial-card-v2 {
  background: var(--light-cream);
  border-radius: 16px;
  padding: 32px 36px;
  position: relative;
}

.testimonial-text-v2 {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.testimonial-quote-icon {
  font-size: 48px;
  color: var(--accent-color);
  opacity: 0.6;
  line-height: 1;
  flex-shrink: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h6 {
  font-size: 1rem;
  margin: 0;
}

.testimonial-author span {
  color: var(--body-color);
  font-size: 13px;
}

/* ── Gallery ── */
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 30, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}

/* ── FAQ (ref: accordion left + framed image right) ── */
.faq-section {
  background: var(--white);
}

.faq-image-frame {
  background: var(--light-cream);
  border: 1px solid rgba(147, 122, 75, 0.15);
  border-radius: 20px;
  padding: 16px;
  position: sticky;
  top: 100px;
}

.faq-image-inner {
  border-radius: 14px;
  overflow: hidden;
}

.faq-image-inner img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.accordion-custom-v2 .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 50px !important;
  overflow: hidden;
  background: transparent;
}

.accordion-custom-v2 .accordion-button {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--heading-color);
  background: var(--light-cream);
  padding: 18px 28px;
  border-radius: 50px !important;
  box-shadow: none;
}

.accordion-custom-v2 .accordion-button:not(.collapsed) {
  background: var(--accent-color);
  color: var(--white);
  box-shadow: none;
}

.accordion-custom-v2 .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233e3e3e'%3e%3cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e");
  transform: none;
}

.accordion-custom-v2 .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
  transform: none;
}

.accordion-custom-v2 .accordion-body {
  color: var(--body-color);
  font-size: 15px;
  padding: 16px 28px 20px;
  background: rgba(248, 244, 239, 0.5);
  border-radius: 0 0 16px 16px;
}

.accordion-custom .accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 37, 112, 0.06);
}

.accordion-custom .accordion-button {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--heading-color);
  background: var(--white);
  padding: 20px 24px;
  box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background: var(--light-cream);
  color: var(--primary-color);
}

.accordion-custom .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23937a4b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-custom .accordion-body {
  color: var(--body-color);
  font-size: 15px;
  padding: 0 24px 20px;
}

/* ── Contact ── */
.contact-info-card {
  background: var(--primary-color);
  color: var(--white);
  border-radius: 8px;
  padding: 40px;
  height: 100%;
}

.contact-info-card h4 {
  color: var(--white);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item i {
  width: 48px;
  height: 48px;
  background: rgba(147, 122, 75, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.contact-info-item h6 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  opacity: 0.7;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--white);
  font-size: 16px;
  margin: 0;
}

.contact-info-item a:hover {
  color: var(--accent-color);
}

.contact-form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 37, 112, 0.1);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1px solid rgba(0, 37, 112, 0.12);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(147, 122, 75, 0.15);
}

/* ── Footer ── */
.footer {
  background: var(--dark-footer);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.footer-brand span {
  color: var(--accent-color);
}

.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 6px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-right: 8px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--accent-color);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-color);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .navbar-custom .navbar-collapse {
    background: var(--white);
    padding: 16px;
    border-radius: 8px;
    margin-top: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }

  .navbar-custom .nav-link {
    color: var(--heading-color) !important;
  }

  .section-padding {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .hero-content {
    padding: 120px 0 80px;
  }

  .stats-section {
    padding: 60px 0;
  }

  .about-image-inner img,
  .why-image-inner img,
  .testimonial-image-inner img,
  .faq-image-inner img {
    height: 320px;
    min-height: 320px;
  }

  .faq-image-frame {
    position: static;
    margin-top: 24px;
  }

  .stats-bg {
    background-attachment: scroll;
  }

  .stats-number-v2 {
    font-size: 1.5rem;
  }

  .stats-card-icon {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .stats-card-v2 {
    padding: 18px 14px;
    gap: 10px;
  }

  .btn-cta-plus {
    min-width: auto;
    width: 100%;
  }

  .why-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
