/* ==================== RESET & BASE ==================== */
*, ::after, ::before {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  line-height: inherit;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: inherit;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

ul, ol, menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

textarea {
  resize: vertical;
}

input::placeholder, textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

.hidden {
  display: none !important;
}

/* ==================== UTILITY CLASSES ==================== */
.mb-4 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1rem; }
.mr-2 { margin-right: 0.5rem; }

.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-100 { background-color: #dcfce7; }
.bg-purple-100 { background-color: #f3e8ff; }
.bg-yellow-400 { background-color: #facc15; }
.bg-green-400 { background-color: #4ade80; }
.bg-red-400 { background-color: #f87171; }

.text-blue-400 { color: #60a5fa; }
.text-blue-600 { color: #2563eb; }
.text-blue-900 { color: #1e3a8a; }
.text-green-400 { color: #4ade80; }
.text-green-600 { color: #16a34a; }
.text-purple-400 { color: #c084fc; }
.text-purple-600 { color: #9333ea; }

/* ==================== ANIMATIONS ==================== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-15px) translateX(10px); }
  50% { transform: translateY(-25px) translateX(-5px); }
  75% { transform: translateY(-10px) translateX(-15px); }
}

@keyframes floatMedium {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-20px) translateX(15px); }
  66% { transform: translateY(-10px) translateX(-10px); }
}

@keyframes floatFast {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(10px); }
}

@keyframes heroFloat1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes heroFloat2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

@keyframes heroFloat3 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-25px) translateX(15px); }
}

@keyframes heroFloat4 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes textShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%) translateX(-50%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0) translateX(-50%);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes bounceSlight {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes bounceGentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==================== HEADER ==================== */
.header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid #e5e7eb;
  background-color: #fff;
  animation: fadeInDown 0.6s ease-out;
}

.nav-container {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  max-width: 80rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.25rem;
}

.logo-link {
  display: block;
}

.logo-link:hover .logo-img {
  transform: scale(1.1);
  filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
}

.logo-img {
  height: 3.5rem;
  width: auto;
  transition: all 0.5s;
}

.mobile-menu-toggle {
  display: flex;
}

.hamburger-btn {
  font-size: 1.5rem;
  color: #1d4ed8;
  transition: all 0.3s;
}

.hamburger-btn:hover {
  color: #1e3a8a;
  transform: scale(1.1);
}

.nav-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100vw;
  background-color: #fff;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  border-top: 1px solid #e5e7eb;
  padding-bottom: 1rem;
  z-index: 50;
}

.nav-links {
  display: flex;
  flex-direction: column;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-top: 1px solid #f3f4f6;
}

.dropdown-parent {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
}

.nav-link {
  font-size: 1.25rem;
  font-weight: 700;
  transition: all 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  transition: all 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-blue {
  color: #1d4ed8;
}

.nav-link-blue:hover {
  color: #1e3a8a;
}

.nav-link-blue::after {
  background-color: #2563eb;
}

.nav-link-green {
  color: #1d4ed8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link-green:hover {
  color: #16a34a;
}

.nav-link-green::after {
  background-color: #16a34a;
}

.nav-link-red {
  color: #1d4ed8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link-red:hover {
  color: #dc2626;
}

.nav-link-red::after {
  background-color: #dc2626;
}

.chevron-icon {
  font-size: 0.875rem;
  transition: transform 0.3s;
}

.dropdown-parent:hover .chevron-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  width: 100%;
  background: #fff;
  border-radius: 0.5rem;
  padding: 1rem 0;
}

.dropdown-parent:hover .dropdown-menu {
  display: block;
}

.dropdown-content {
  padding: 0.5rem 1rem;
}

.dropdown-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: #374151;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.dropdown-item:hover {
  color: #16a34a;
  background-color: #f0fdf4;
}

.dropdown-item-red:hover {
  color: #dc2626;
  background-color: #fef2f2;
}

.dropdown-item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-item-text {
  font-weight: 500;
  font-size: 1.125rem;
}

.dropdown-arrow {
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.dropdown-item:hover .dropdown-arrow {
  opacity: 1;
}

.nav-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 1.25rem;
  margin-top: 1rem;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  background-color: #22c55e;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  animation: bounceSlight 2s ease-in-out infinite;
}

.btn-whatsapp:hover {
  background-color: #16a34a;
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgb(34 197 94 / 0.25);
}

.btn-whatsapp i {
  font-size: 1.25rem;
}

.btn-contact {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #2563eb;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.btn-contact:hover {
  background-color: #1d4ed8;
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgb(37 99 235 / 0.25);
}

.btn-contact-text {
  position: relative;
  z-index: 10;
}

.btn-contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #1d4ed8, #1e40af);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.btn-contact:hover .btn-contact-overlay {
  transform: scaleX(1);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  width: 100%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 39, 68, 0.9), rgba(0, 39, 68, 0.7), rgba(0, 119, 190, 0.5));
}

.hero-pattern-overlay {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wMyI+PHBhdGggZD0iTTM2IDE4YzAtMS4xMDgtLjg5Mi0yLTItMnMtMiAuODkyLTIgMiAuODkyIDIgMiAyIDItLjg5MiAyLTJ6bTAgMTJjMC0xLjEwOC0uODkyLTItMi0ycy0yIC44OTItMiAyIC44OTIgMiAyIDIgMi0uODkyIDItMnptMCAxMmMwLTEuMTA4LS44OTItMi0yLTJzLTIgLjg5Mi0yIDIgLjg5MiAyIDIgMi0uODkyIDItMnoiLz48L2c+PC9nPjwvc3ZnPg==');
  opacity: 0.3;
}

.hero-decorations {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-float-1 {
  position: absolute;
  top: 25%;
  left: 10%;
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  border: 2px solid rgba(66, 147, 193, 0.2);
  animation: heroFloat1 6s ease-in-out infinite;
}

.hero-float-2 {
  position: absolute;
  top: 33%;
  right: 15%;
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  border: 1px solid rgba(136, 204, 190, 0.2);
  animation: heroFloat2 8s ease-in-out infinite;
}

.hero-float-3 {
  position: absolute;
  bottom: 25%;
  left: 20%;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  background-color: rgba(100, 181, 246, 0.1);
  animation: heroFloat3 7s ease-in-out infinite;
}

.hero-float-4 {
  position: absolute;
  top: 15%;
  right: 30%;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background-color: rgba(66, 147, 193, 0.1);
  animation: heroFloat4 5s ease-in-out infinite;
}

.hero-line-1 {
  position: absolute;
  top: 33%;
  left: 0;
  height: 2px;
  width: 8rem;
  background: linear-gradient(to right, transparent, rgba(136, 204, 190, 0.3), transparent);
  transform: rotate(-12deg);
}

.hero-line-2 {
  position: absolute;
  bottom: 33%;
  right: 0;
  height: 2px;
  width: 10rem;
  background: linear-gradient(to left, transparent, rgba(100, 181, 246, 0.2), transparent);
  transform: rotate(12deg);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

.hero-inner {
  margin: 0 auto;
  max-width: 64rem;
  text-align: center;
}

.hero-quote-wrapper {
  position: relative;
  margin-bottom: 2.5rem;
}

.hero-quote-left {
  font-size: 2.25rem;
  color: rgba(136, 204, 190, 0.4);
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  opacity: 0;
}

.hero-quote-right {
  font-size: 2.25rem;
  color: rgba(136, 204, 190, 0.4);
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  opacity: 0;
}

.hero-reveal {
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out forwards;
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #fff;
}

.hero-title-gradient {
  background: linear-gradient(to right, #fff, #c5e4fb, #88ccbe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 auto 3rem;
  max-width: 42rem;
  font-size: 1.125rem;
  color: rgba(197, 228, 251, 0.8);
  font-weight: 300;
  line-height: 1.625;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.btn-explore {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  background: linear-gradient(to right, #0077be, #4293c1);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 119, 190, 0.3);
  transition: all 0.5s;
}

.btn-explore:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 119, 190, 0.5);
  transform: scale(1.05);
}

.btn-explore-text {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-arrow {
  transition: transform 0.3s;
}

.btn-explore:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-explore-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to right, #005c91, #0077be);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-explore:hover .btn-explore-overlay {
  opacity: 1;
}

.btn-touch {
  border-radius: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: all 0.5s;
}

.btn-touch:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(255, 255, 255, 0.1);
}

.btn-touch-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-phone-icon {
  transition: transform 0.3s;
}

.btn-touch:hover .btn-phone-icon {
  transform: scale(1.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1s infinite;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==================== SECTION COMMON ==================== */
.about-section,
.choose-section,
.elevate-section {
  background-color: #faf8f4;
}

.section-container {
  margin: 0 auto;
  max-width: 80rem;
  padding: 2.5rem 1.25rem;
}

.section-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 1.25rem;
}

.section-heading-wrap {
  position: relative;
}

.section-heading {
  font-size: 2.25rem;
  line-height: 1.5;
  font-weight: 700;
  font-family: var(--font-family-heading);
}

.section-heading-pr {
  padding-right: 3rem;
}

.double-line-svg {
  position: absolute;
  left: 3rem;
  top: 3rem;
  z-index: 10;
  width: 10rem;
}

.double-line-svg-alt {
  left: 8rem;
}

.four-star-svg {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

.green-curve-svg {
  position: absolute;
  left: 50%;
  top: 8rem;
  z-index: 10;
  display: none;
  transform: translateX(-50%);
}

.green-curve-choose-svg {
  position: absolute;
  right: 0;
  top: 10rem;
  z-index: 10;
  display: none;
}

.star-svg {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 10;
  display: none;
  height: 76px;
  width: 72px;
  transform: translateX(-50%);
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--gray-text-color);
}

.choose-text {
  font-weight: 100;
}

.elevate-text {
  font-weight: 100;
}

/* ==================== CARDS ==================== */
.cards-grid {
  display: grid;
  gap: 2.25rem;
  padding-top: 2.5rem;
}

.card {
  position: relative;
  border-radius: 1.5rem;
  background-color: #e5e7eb;
  padding: 2rem 1.5rem 10rem;
}

.card-middle {
  padding-top: 10rem;
  padding-bottom: 10rem;
}


.card-title {
  font-size: 1.5rem;
}

.card-title-accent {
  color: var(--primary-color);
}

.card-text {
  padding-top: 1rem;
  font-size: 1.125rem;
  font-weight: 100;
}

.card-decoration {
  position: absolute;
}

.swirl-svg {
  bottom: 1rem;
  left: 1rem;
  height: 100px;
  width: 105px;
}

.globe-svg {
  top: 2rem;
  bottom: auto;
  left: 2.5rem;
  height: 76px;
  width: 82px;
}

.arrow-svg {
  bottom: 1.5rem;
  left: 1.5rem;
  height: 85px;
  width: 83px;
}

.card-icon-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  height: 6rem;
  width: 6rem;
  align-items: flex-end;
  justify-content: flex-end;
  border-top-left-radius: 1.5rem;
  background-color: #faf8f4;
}

.card-icon-wrap-middle {
  /* Different positioning for middle card */
}

.card-icon-circle {
  position: relative;
  display: flex;
  height: 5rem;
  width: 5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e5e7eb;
}

.card-icon {
  color: var(--primary-color);
  font-size: 1.875rem;
}

.card-corner-left {
  position: absolute;
  left: -2.5rem;
  bottom: 0;
  z-index: 10;
  height: 3rem;
  width: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  background-color: #e5e7eb;
  box-shadow: 0 15px 0 0 #faf8f4;
}

.card-corner-top {
  position: absolute;
  top: -4rem;
  right: 0;
  z-index: 10;
  height: 3rem;
  width: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  background-color: #e5e7eb;
  box-shadow: 0 15px 0 0 #faf8f4;
}

/* ==================== MOSAIC GRID ==================== */
.mosaic-grid {
  position: relative;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mosaic-mobile-overlay {
  display: none;
}

.mosaic-img {
  display: none;
  height: 7rem;
  overflow: hidden;
  border-radius: 1rem;
  background-size: contain;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

.mosaic-card {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 6rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background-color: var(--primary-color);
  padding: 1.5rem;
  color: var(--primary-button-text-color);
  text-align: center;
}

.mosaic-card-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.mosaic-card-text {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 100;
}

.mosaic-card-text-sm {
  font-size: 0.75rem;
}

.mosaic-col-1 { }
.mosaic-col-2 { }
.mosaic-col-3 { }
.mosaic-col-4 { }

.mosaic-hide-sm { display: none; }
.mosaic-short { }

.mosaic-decoration {
  display: none;
  position: absolute;
  right: 5rem;
  top: 0;
  width: 10rem;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  position: relative;
  min-height: 100vh;
  background-color: #faf8f4;
  overflow: hidden;
}

.faq-bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
}

.bubble-1 { top: 5rem; left: 2.5rem; width: 4rem; height: 4rem; background: rgba(191, 219, 254, 0.2); animation: floatSlow 8s ease-in-out infinite; }
.bubble-2 { top: 10rem; right: 5rem; width: 3rem; height: 3rem; background: rgba(187, 247, 208, 0.2); animation: floatMedium 6s ease-in-out infinite; }
.bubble-3 { bottom: 8rem; left: 25%; width: 5rem; height: 5rem; background: rgba(233, 213, 255, 0.2); animation: floatSlow 9s ease-in-out infinite; }
.bubble-4 { top: 33%; right: 33%; width: 2rem; height: 2rem; background: rgba(147, 197, 253, 0.3); animation: floatFast 4s ease-in-out infinite; }
.bubble-5 { bottom: 5rem; right: 2.5rem; width: 3.5rem; height: 3.5rem; background: rgba(134, 239, 172, 0.25); animation: floatMedium 7s ease-in-out infinite; }
.bubble-6 { top: 15rem; left: 33%; width: 2.5rem; height: 2.5rem; background: rgba(216, 180, 254, 0.2); animation: floatMedium 6s ease-in-out infinite; }
.bubble-7 { bottom: 10rem; left: 5rem; width: 1.5rem; height: 1.5rem; background: rgba(96, 165, 250, 0.25); animation: floatFast 5s ease-in-out infinite; }
.bubble-8 { top: 50%; right: 4rem; width: 3rem; height: 3rem; background: rgba(74, 222, 128, 0.2); animation: floatSlow 10s ease-in-out infinite; }
.bubble-9 { top: 8rem; left: 50%; width: 1rem; height: 1rem; background: rgba(192, 132, 252, 0.3); animation: floatFast 3s ease-in-out infinite; }
.bubble-10 { bottom: 15rem; right: 25%; width: 1.5rem; height: 1.5rem; background: rgba(59, 130, 246, 0.2); animation: floatMedium 7s ease-in-out infinite; }
.bubble-11 { top: 75%; left: 4rem; width: 2rem; height: 2rem; background: rgba(34, 197, 94, 0.25); animation: floatSlow 8s ease-in-out infinite; }
.bubble-12 { top: 4rem; right: 50%; width: 1.25rem; height: 1.25rem; background: rgba(168, 85, 247, 0.2); animation: floatFast 4s ease-in-out infinite; }

.faq-container {
  position: relative;
  z-index: 20;
  margin: 0 auto;
  max-width: 56rem;
  padding: 4rem 1.25rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-title {
  font-size: 3rem;
  line-height: 1.25;
  font-weight: 700;
  font-family: var(--font-family-heading);
  margin-bottom: 1.5rem;
  color: #000;
}

.faq-title-block {
  display: block;
  color: #111827;
}

.faq-divider {
  margin: 0 auto 1.5rem;
  height: 0.25rem;
  width: 8rem;
  background: linear-gradient(to right, #3b82f6, #22c55e);
}

.faq-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  line-height: 1.625;
  max-width: 48rem;
  margin: 0 auto;
}

.faq-card {
  position: relative;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  border: 1px solid #f3f4f6;
  padding: 2rem;
  overflow: hidden;
}

.faq-card-top-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(to right, #bfdbfe, #e9d5ff, #bbf7d0);
}

.faq-bg-icons {
  position: absolute;
  inset: 0;
  opacity: 0.03;
}

.faq-bg-icon {
  position: absolute;
}

.faq-bg-icon-1 {
  top: 2rem;
  right: 2rem;
  width: 6rem;
  height: 6rem;
}

.faq-bg-icon-2 {
  bottom: 2rem;
  left: 2rem;
  width: 5rem;
  height: 5rem;
}

.faq-bg-icon-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item {
  position: relative;
  background: rgba(249, 250, 251, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  border: 1px solid #f3f4f6;
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.faq-item-last {
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  transition: color 0.3s;
  border-radius: 1rem;
}

.faq-question:hover {
  color: #2563eb;
}

.faq-question-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-question-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.faq-chevron {
  color: #3b82f6;
  transition: transform 0.3s;
  font-size: 1.125rem;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #4b5563;
  line-height: 1.625;
}

.faq-answer-inner {
  margin-left: 3.5rem;
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  border: 1px solid #f3f4f6;
}

.faq-list {
  list-style-type: disc;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-left: 1rem;
}

.faq-simple-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-two-col {
  display: grid;
  gap: 1.5rem;
}

.faq-subcategory-title {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.faq-support-box {
  background: rgba(239, 246, 255, 0.5);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid #dbeafe;
}

/* FAQ CTA */
.faq-cta-wrapper {
  text-align: center;
  margin-top: 4rem;
}

.faq-cta {
  background-color: #2563eb;
  border-radius: 1.5rem;
  padding: 2rem;
  color: #fff;
}

.faq-cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.faq-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.btn-cta-white {
  background: #fff;
  color: #2563eb;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.btn-cta-white:hover {
  background: #f3f4f6;
  transform: scale(1.05);
}

.btn-cta-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-cta-outline:hover {
  background: #fff;
  color: #2563eb;
  transform: scale(1.05);
}

/* ==================== ELEVATE SECTION ==================== */
.elevate-cards-grid {
  display: grid;
  gap: 1.25rem;
  padding-top: 2.5rem;
}

.elevate-card {
  position: relative;
  border-radius: 1.5rem;
  background-color: #e5e7eb;
  padding: 1rem;
  padding-bottom: 5rem;
}

.elevate-card-img {
  position: relative;
  z-index: 40;
  height: 15rem;
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
}

.elevate-card-title {
  padding-top: 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.8);
}

.elevate-card-text {
  padding-right: 6rem;
  padding-top: 1rem;
  font-size: 1.125rem;
  color: #1f2937;
}

.elevate-card-icon-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  height: 5rem;
  width: 5rem;
  align-items: flex-end;
  justify-content: flex-end;
  border-top-left-radius: 1.5rem;
  background-color: #faf8f4;
}

.elevate-card-icon-circle {
  position: relative;
  display: flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background-color: #e5e7eb;
}

.elevate-card-icon-inner {
  font-size: 1.875rem;
  color: var(--primary-color);
}

.elevate-card-corner-left {
  position: absolute;
  left: -2.5rem;
  bottom: 0;
  z-index: 10;
  height: 3rem;
  width: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  background-color: #e5e7eb;
  box-shadow: 0 15px 0 0 #faf8f4;
}

.elevate-card-corner-top {
  position: absolute;
  top: -4rem;
  right: 0;
  z-index: 10;
  height: 3rem;
  width: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  background-color: #e5e7eb;
  box-shadow: 0 15px 0 0 #faf8f4;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, #1e3a8a, #1e40af, #1e3a8a);
  padding: 5rem 1.25rem;
}

.contact-bg-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.contact-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.contact-blob-1 {
  top: 2.5rem;
  left: 2.5rem;
  height: 8rem;
  width: 8rem;
  background: #facc15;
}

.contact-blob-2 {
  bottom: 5rem;
  right: 5rem;
  height: 10rem;
  width: 10rem;
  background: #4ade80;
  animation-delay: 1s;
}

.contact-blob-3 {
  top: 50%;
  left: 25%;
  height: 6rem;
  width: 6rem;
  background: #f87171;
  animation-delay: 2s;
}

.contact-container {
  position: relative;
  margin: 0 auto;
  max-width: 56rem;
  text-align: center;
}

.contact-header {
  margin-bottom: 4rem;
}

.contact-title {
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to right, #fff, #dbeafe, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% auto;
  animation: textShimmer 3s linear infinite;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: #dbeafe;
}

.contact-form-card {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

.form-group {
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #dbeafe;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  border-radius: 0.5rem;
  border: 2px solid rgba(147, 197, 253, 0.3);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 0.75rem 1rem;
  color: #fff;
  transition: all 0.3s;
}

.form-input::placeholder {
  color: #bfdbfe;
}

.form-input:hover {
  background: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
  outline: none;
  transform: scale(1.02);
}

.form-input-yellow:focus {
  border-color: #facc15;
  box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.5);
}

.form-input-green:focus {
  border-color: #4ade80;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.5);
}

.form-input-purple:focus {
  border-color: #c084fc;
  box-shadow: 0 0 0 2px rgba(192, 132, 252, 0.5);
}

.form-input-red:focus {
  border-color: #f87171;
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.5);
}

.form-textarea {
  resize: none;
}

.form-submit-wrap {
  padding-top: 1rem;
}

.btn-submit {
  position: relative;
  width: 100%;
  border-radius: 0.5rem;
  background: linear-gradient(to right, #3b82f6, #2563eb);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  transition: all 0.3s;
  overflow: hidden;
}

.btn-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.btn-submit-text {
  position: relative;
  z-index: 10;
  margin-right: 0.5rem;
}

.btn-submit-icon {
  position: relative;
  z-index: 10;
  transition: all 0.3s;
}

.btn-submit:hover .btn-submit-icon {
  transform: translateX(0.5rem) translateY(-0.25rem);
}

.btn-submit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #2563eb, #1e40af);
  transform: scaleX(0);
  transition: transform 0.5s;
  transform-origin: left;
}

.btn-submit:hover .btn-submit-overlay {
  transform: scaleX(1);
}

/* Contact Info Cards */
.contact-cards-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
}

.contact-info-card {
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  transition: all 0.3s;
}

.contact-info-card:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.contact-info-icon-wrap {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.contact-info-icon-circle {
  border-radius: 50%;
  padding: 1rem;
  transition: all 0.3s;
  font-size: 1.5rem;
}

.contact-info-card:hover .contact-info-icon-circle {
  transform: scale(1.1) rotate(12deg);
}

.contact-info-title {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s;
}

.contact-info-detail {
  color: #bfdbfe;
  transition: color 0.3s;
}

.contact-info-card:hover .contact-info-detail {
  color: #dbeafe;
}

.contact-info-detail-sm {
  font-size: 0.75rem;
}

.contact-info-detail-tight {
  line-height: 1.25;
}

/* Floating chat icon */
.floating-chat-icon {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}

.floating-chat-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #60a5fa;
  opacity: 0.75;
}

.floating-chat-btn {
  position: relative;
  border-radius: 50%;
  background: linear-gradient(to right, #3b82f6, #2563eb);
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  transition: all 0.3s;
  animation: bounceGentle 2s ease-in-out infinite;
  color: #fff;
  font-size: 1.5rem;
}

.floating-chat-btn:hover {
  transform: scale(1.1) rotate(12deg);
}

/* ==================== FOOTER ==================== */
.footer {
  background-color: var(--primary-color);
}

.footer-container {
  margin: 0 auto;
  max-width: 80rem;
  padding: 2.5rem 1.25rem 2.5rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding-bottom: 2rem;
}

.footer-logo-link {
  display: block;
}

.footer-logo-text {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: 'Arial', sans-serif;
  color: #fff;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #fff;
}

.footer-link {
  transition: color 0.2s linear;
}

.footer-link:hover {
  color: var(--light-text-color);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.footer-copyright {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 100;
  color: #fff;
}

/* ==================== RESPONSIVE - SM (640px) ==================== */
@media (min-width: 640px) {
  .logo-img {
    height: 5rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-cta {
    flex-direction: row;
    gap: 1.5rem;
  }

  .mosaic-mobile-overlay {
    display: none;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info-card-wide {
    grid-column: span 2;
  }

  .footer-nav {
    flex-direction: row;
    gap: 2rem;
  }

  .faq-cta-buttons {
    flex-direction: row;
  }
}

/* ==================== RESPONSIVE - MD (768px) ==================== */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-quote-left {
    font-size: 3.75rem;
    top: -2.5rem;
    left: -3rem;
  }

  .hero-quote-right {
    font-size: 3.75rem;
    bottom: -2.5rem;
    right: -3rem;
  }

  .card-title {
    font-size: 1.875rem;
  }

  .card-icon-wrap {
    height: 7rem;
    width: 7rem;
  }

  .card-icon-circle {
    height: 6rem;
    width: 6rem;
  }

  .mosaic-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .mosaic-img {
    display: block;
    height: 10rem;
  }

  .mosaic-card {
    grid-column: span 4 / span 4;
    height: 10rem;
    gap: 0.75rem;
  }

  .mosaic-col-1 { grid-column: span 1 / span 1; }
  .mosaic-col-2 { grid-column: span 2 / span 2; }
  .mosaic-col-3 { grid-column: span 3 / span 3; }
  .mosaic-col-4 { grid-column: span 4 / span 4; }

  .mosaic-col-2-md { grid-column: span 2 / span 2; }
  .mosaic-col-3-md { grid-column: span 3 / span 3; }

  .mosaic-transparent-md {
    background-color: transparent;
    opacity: 0;
  }

  .mosaic-hide-sm {
    display: block;
  }

  .mosaic-img.mosaic-hide-sm {
    border-radius: 30px;
  }

  .mosaic-card {
    border-radius: 30px;
  }

  .mosaic-card-title {
    font-size: 1.5rem;
  }

  .mosaic-card-text {
    font-size: 1rem;
  }

  .mosaic-card-text-sm {
    font-size: 0.875rem;
  }

  .mosaic-short {
    height: 5rem;
    margin-top: auto;
  }

  .mosaic-decoration {
    display: block;
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-two-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .elevate-card-text {
    padding-top: 2rem;
    padding-right: 8rem;
  }

  .elevate-card-icon-wrap {
    height: 7rem;
    width: 7rem;
  }

  .elevate-card-icon-circle {
    height: 6rem;
    width: 6rem;
    border-radius: 1.5rem;
  }

  .nav-buttons {
    flex-direction: row;
    margin-top: 0;
    padding: 0;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-copyright {
    text-align: left;
  }

  .elevate-card-img {
    height: 18rem;
  }

  .globe-svg {
    top: 2.5rem;
    bottom: auto;
  }
}

/* ==================== RESPONSIVE - LG (1024px) ==================== */
@media (min-width: 1024px) {
  .nav-menu {
    position: static;
    display: flex !important;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    padding-bottom: 0;
    box-shadow: none;
    border-top: 0;
    width: auto;
  }

  .nav-links {
    flex-direction: row;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0 1.5rem;
  }

  .nav-links > li + li {
    margin-left: 2rem;
  }

  .nav-item {
    border-top: none;
    padding: 0;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 20rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    border: 1px solid #e5e7eb;
    z-index: 50;
    padding: 1rem 0;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.95);
  }

  .section-container {
    padding: 5rem 1.25rem;
  }

  .section-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    font-size: 3rem;
    line-height: 1.5;
  }

  .double-line-svg {
    width: 16rem;
    top: 4rem;
  }

  .green-curve-svg {
    display: block;
  }

  .green-curve-choose-svg {
    display: block;
  }

  .star-svg {
    display: block;
  }

  .about-text {
    font-size: 1.25rem;
    padding-left: 5rem;
  }

  .choose-text {
    padding-left: 5rem;
    font-size: 1.125rem;
  }

  .elevate-text {
    padding-left: 5rem;
    font-size: 1.125rem;
  }

  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    padding-top: 7rem;
  }

  .card-middle {
    padding-bottom: 3rem;
    padding-top: 10rem;
  }

  .card-corner-left {
    box-shadow: 0 25px 0 0 #faf8f4;
  }

  .card-corner-top {
    box-shadow: 0 25px 0 0 #faf8f4;
  }

  .mosaic-grid {
    margin-top: 7rem;
  }

  .mosaic-img {
    height: 13rem;
  }

  .mosaic-card {
    height: 13rem;
    padding: 2.5rem;
  }

  .mosaic-short {
    height: 10rem;
  }

  .mosaic-col-1 {
    grid-column: span 1;
  }

  .faq-container {
    padding: 6rem 1.25rem;
  }

  .faq-title {
    font-size: 3.75rem;
    line-height: 1.25;
  }

  .faq-subtitle {
    font-size: 1.5rem;
  }

  .faq-card {
    padding: 3rem;
  }

  .elevate-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
    padding-top: 7rem;
  }

  .elevate-card {
    padding-bottom: 2rem;
  }

  .elevate-card-img {
    height: 14rem;
  }

  .contact-section {
    padding: 8rem 1.25rem;
  }

  .contact-title {
    font-size: 3rem;
  }

  .contact-subtitle {
    font-size: 1.5rem;
  }

  .contact-form-card {
    padding: 3rem;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-info-card-wide {
    grid-column: span 1;
  }

  .footer-container {
    padding: 3.5rem 1.25rem 6rem;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    padding-bottom: 3.5rem;
  }

  .footer-nav {
    flex-direction: row;
    gap: 3.5rem;
  }
}

/* ==================== RESPONSIVE - XL (1280px) ==================== */
@media (min-width: 1280px) {
  .section-heading {
    font-size: 3.75rem;
    line-height: 1.5;
  }

  .card-title {
    font-size: 2.25rem;
  }

  .card {
    padding: 3rem 2.25rem 10rem;
  }

  .card-middle {
    padding-top: 10rem;
    padding-left: 2.25rem;
    padding-right: 2.25rem;
    padding-bottom: 3rem;
  }

  .section-grid {
    gap: 2.5rem;
  }

  .mosaic-img {
    height: 18rem;
  }

  .mosaic-card {
    height: 18rem;
  }

  .elevate-card-img {
    height: 18rem;
  }

  .double-line-svg-alt {
    left: 13rem;
    top: 4rem;
    width: 16rem;
  }
}
