/*
* Veliva - Yoga & Wellness Template
* Author: Claude
* Version: 1.0
*/

/* ======== Base Styles ======== */
:root {
  --primary: #c599b6;
  --secondary: #e6b2ba;
  --tertiary: #fad0c4;
  --light: #fff7f3;
  --dark: #4a3a4a;
  --gray: #8a7a8a;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(197, 153, 182, 0.1);
  --radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 10px = 1rem */
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  margin-bottom: 2rem;
  font-weight: 500;
  color: var(--dark);
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.2rem;
}

p {
  margin-bottom: 1.6rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

ul,
ol {
  list-style: none;
}

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

button,
input,
textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
}

.veliva-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ======== Header Styles ======== */
.veliva-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 247, 243, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.veliva-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.veliva-logo a {
  display: flex;
  align-items: center;
  font-size: 18px;
}

.veliva-nav-list {
  display: flex;
  gap: 3rem;
}

.veliva-nav-link {
  color: var(--dark);
  font-weight: 500;
  position: relative;
}

.veliva-nav-link:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

.veliva-menu-toggle {
  display: none;
  cursor: pointer;
}

.veliva-hamburger {
  display: block;
  width: 2.5rem;
  height: 0.2rem;
  background-color: var(--dark);
  position: relative;
  transition: var(--transition);
}

.veliva-hamburger:before,
.veliva-hamburger:after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 0.2rem;
  background-color: var(--dark);
  position: absolute;
  transition: var(--transition);
}

.veliva-hamburger:before {
  top: -0.8rem;
}

.veliva-hamburger:after {
  bottom: -0.8rem;
}

/* ======== Hero Section ======== */
.veliva-hero {
  height: 100vh;
  min-height: 600px;
  background-image: url(../img/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
}

.veliva-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(74, 58, 74, 0.7),
    rgba(197, 153, 182, 0.5)
  );
}

.veliva-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.veliva-hero-title {
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease-out;
}

.veliva-hero-subtitle {
  font-size: 2.2rem;
  margin-bottom: 4rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.3s;
  animation-fill-mode: both;
}

.veliva-hero-cta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  animation: fadeIn 1s ease-out 0.6s;
  animation-fill-mode: both;
}

.veliva-scroll-down {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  cursor: pointer;
}

/* ======== Buttons ======== */
.veliva-btn {
  display: flex;
  padding: 1.2rem 2.8rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  align-items: center;
  justify-content: center;
}

.veliva-btn-primary {
  background-color: var(--primary);
  color: white;
}

.veliva-btn-primary:hover {
  background-color: var(--secondary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(197, 153, 182, 0.3);
}

.veliva-btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.veliva-btn-secondary:hover {
  background-color: white;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.veliva-btn-text {
  background-color: transparent;
  color: var(--primary);
  padding: 0.8rem 0;
  position: relative;
}

.veliva-btn-text:after {
  content: '';
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.veliva-btn-text:hover {
  color: var(--secondary);
}

.veliva-btn-text:hover:after {
  width: 100%;
  background-color: var(--secondary);
}

.veliva-btn-sm {
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
}

/* ======== Section Styles ======== */
section {
  padding: 10rem 0;
  position: relative;
}

.veliva-section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.veliva-section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.veliva-section-divider {
  width: 6rem;
  height: 0.3rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  margin: 0 auto 2rem;
  border-radius: 1rem;
}

.veliva-section-desc {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
}

/* ======== About Section ======== */
.veliva-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.veliva-about-image {
  position: relative;
}

.veliva-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.veliva-image-decoration {
  position: absolute;
  width: 50%;
  height: 50%;
  border: 3px solid var(--tertiary);
  border-radius: var(--radius);
  top: -2rem;
  left: -2rem;
  z-index: -1;
}

.veliva-about-subtitle {
  color: var(--primary);
  margin-bottom: 2rem;
}

.veliva-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.veliva-feature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.veliva-feature-icon {
  width: 4.5rem;
  height: 4.5rem;
  background-color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

/* ======== Services Section ======== */
.veliva-services {
  background-color: rgba(250, 208, 196, 0.1);
}

.veliva-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 3rem;
}

.veliva-service-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.veliva-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(197, 153, 182, 0.15);
}

.veliva-service-icon {
  margin: 0 auto 2rem;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(135deg, var(--light), white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.veliva-service-title {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.veliva-service-desc {
  color: var(--gray);
  margin-bottom: 2rem;
}

/* ======== Schedule Section ======== */
.veliva-schedule-tabs {
  background-color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.veliva-tabs-nav {
  display: flex;
  background-color: var(--light);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.veliva-tab-btn {
  padding: 1.5rem 2.5rem;
  background: none;
  border: none;
  color: var(--gray);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.veliva-tab-btn.active {
  background-color: white;
  color: var(--primary);
  box-shadow: 0 -3px 0 var(--primary) inset;
}

.veliva-tab-pane {
  display: none;
  padding: 3rem;
}

.veliva-tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

.veliva-schedule-item {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(197, 153, 182, 0.1);
}

.veliva-schedule-item:last-child {
  border-bottom: none;
}

.veliva-schedule-time {
  width: 15%;
  color: var(--primary);
  font-weight: 600;
}

.veliva-schedule-info {
  width: 50%;
  padding-right: 2rem;
}

.veliva-schedule-title {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.veliva-schedule-instructor {
  color: var(--gray);
  font-size: 1.4rem;
  margin-bottom: 0;
}

.veliva-schedule-level {
  width: 20%;
  color: var(--gray);
  font-size: 1.4rem;
}

.veliva-schedule-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ======== Philosophy Section ======== */
.veliva-philosophy-content {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 6rem;
  align-items: center;
}

.veliva-philosophy-subtitle {
  color: var(--primary);
  margin-bottom: 2rem;
}

.veliva-philosophy-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.veliva-principle {
  text-align: center;
}

.veliva-principle-icon {
  margin: 0 auto 1.5rem;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, var(--light), white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.veliva-principle h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.veliva-quote {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--primary);
  margin: 4rem 0;
  padding-left: 3rem;
  border-left: 3px solid var(--secondary);
}

/* ======== Testimonials Section ======== */
.veliva-testimonials {
  background-color: rgba(230, 178, 186, 0.1);
  text-align: center;
}

.veliva-testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.veliva-testimonial {
  background-color: white;
  border-radius: var(--radius);
  padding: 4rem;
  box-shadow: var(--shadow);
  margin: 0 auto;
}

.veliva-testimonial-content p {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 3rem;
}

.veliva-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.veliva-author-image {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--tertiary);
}

.veliva-author-name {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.veliva-author-title {
  color: var(--gray);
  font-size: 1.4rem;
  margin-bottom: 0;
}

.veliva-testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.veliva-dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: rgba(197, 153, 182, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.veliva-dot.active {
  background-color: var(--primary);
}

/* ======== Contact Section ======== */
.veliva-contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  margin-top: 4rem;
}

.veliva-contact-info {
  background-color: white;
  border-radius: var(--radius);
  padding: 4rem;
  box-shadow: var(--shadow);
}

.veliva-contact-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.veliva-contact-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--light), white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.veliva-contact-text h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.veliva-contact-text p {
  color: var(--gray);
  margin-bottom: 0;
}

.veliva-social-link {
  width: 4.5rem;
  height: 4.5rem;
  background-color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.veliva-social-link:hover {
  background-color: var(--primary);
}

.veliva-social-link:hover svg path {
  stroke: white;
}

.veliva-contact-form-container {
  background-color: white;
  border-radius: var(--radius);
  padding: 4rem;
  box-shadow: var(--shadow);
}

.veliva-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.veliva-form-group {
  margin-bottom: 2rem;
}

.veliva-form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.veliva-form-group input,
.veliva-form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid rgba(197, 153, 182, 0.3);
  border-radius: var(--radius);
  background-color: var(--light);
  transition: var(--transition);
}

.veliva-form-group input:focus,
.veliva-form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(197, 153, 182, 0.1);
}

.veliva-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.veliva-checkbox input {
  width: auto;
  margin-top: 0.5rem;
}

.veliva-checkbox label {
  font-size: 1.4rem;
  margin-bottom: 0;
}

/* ======== Success Page ======== */
.veliva-success {
  padding: 12rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.veliva-success-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--radius);
  padding: 5rem;
  box-shadow: var(--shadow);
}

.veliva-success-icon {
  width: 10rem;
  height: 10rem;
  background: linear-gradient(135deg, var(--light), white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3rem;
  box-shadow: var(--shadow);
}

.veliva-success-title {
  color: var(--primary);
  margin-bottom: 2rem;
}

.veliva-success-message {
  margin-bottom: 3rem;
  font-size: 1.8rem;
}

.veliva-success-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* ======== Policy Pages ======== */
.veliva-policy {
  padding: 12rem 0 6rem;
}

.veliva-policy-header {
  text-align: center;
  margin-bottom: 5rem;
}

.veliva-policy-title {
  margin-bottom: 1rem;
}

.veliva-policy-meta {
  color: var(--gray);
}

.veliva-policy-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--radius);
  padding: 5rem;
  box-shadow: var(--shadow);
}

.veliva-policy-subtitle {
  color: var(--primary);
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-size: 2.6rem;
}

.veliva-policy-tertiary {
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.veliva-policy-list {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.veliva-policy-list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.veliva-policy-list li:before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  background-color: var(--primary);
  border-radius: 50%;
}

.veliva-link {
  color: var(--primary);
  position: relative;
  transition: var(--transition);
}

.veliva-link:after {
  content: '';
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: var(--transition);
}

.veliva-link:hover {
  color: var(--secondary);
}

.veliva-link:hover:after {
  width: 100%;
  background-color: var(--secondary);
}

.veliva-policy-table {
  overflow-x: auto;
  margin: 3rem 0;
}

.veliva-policy-table table {
  width: 100%;
  border-collapse: collapse;
}

.veliva-policy-table th,
.veliva-policy-table td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(197, 153, 182, 0.2);
}

.veliva-policy-table th {
  background-color: var(--light);
  color: var(--primary);
  font-weight: 600;
}

/* ======== Footer ======== */
.veliva-footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 6rem 0 0;
}

.veliva-footer-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 6rem;
  margin-bottom: 4rem;
}

.veliva-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.veliva-footer-title {
  color: white;
  margin-bottom: 2rem;
}

.veliva-footer-menu li {
  margin-bottom: 1rem;
}

.veliva-footer-menu a {
  color: var(--light);
  opacity: 0.8;
  transition: var(--transition);
}

.veliva-footer-menu a:hover,
.veliva-footer-menu a.active {
  opacity: 1;
  color: var(--tertiary);
}

.veliva-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.veliva-copyright {
  margin-bottom: 0;
  font-size: 1.4rem;
  opacity: 0.8;
}

.veliva-footer-logo a {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: white;
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* ======== Responsive ======== */
@media (max-width: 1100px) {
  html {
    font-size: 60%;
  }

  .veliva-about-content,
  .veliva-philosophy-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .veliva-contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .veliva-footer-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .veliva-footer-logo {
    text-align: center;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 58%;
  }
  section {
    padding: 6rem 0;
}
.veliva-section-header {
    margin-bottom: 4rem

}

  .veliva-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 8rem 3rem;
    transition: var(--transition);
    overflow-y: auto;
    z-index: 1000;
  }

  .veliva-nav.active {
    right: 0;
  }

  .veliva-nav-list {
    flex-direction: column;
    gap: 2rem;
  }

  .veliva-menu-toggle {
    display: block;
    z-index: 1001;
  }

  .veliva-menu-toggle.active .veliva-hamburger {
    background-color: transparent;
  }

  .veliva-menu-toggle.active .veliva-hamburger:before {
    transform: translateY(0.8rem) rotate(45deg);
  }

  .veliva-menu-toggle.active .veliva-hamburger:after {
    transform: translateY(-0.8rem) rotate(-45deg);
  }

  .veliva-hero-title {
    font-size: 4.8rem;
  }

  .veliva-about-features,
  .veliva-philosophy-principles {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .veliva-schedule-item {
    flex-wrap: wrap;
  }

  .veliva-schedule-time {
    width: 35%;
  }

  .veliva-schedule-info {
    width: 65%;
    padding-right: 0;
  }

  .veliva-schedule-level {
    width: 50%;
    margin-top: 1rem;
  }

  .veliva-schedule-item .veliva-btn {
    margin-top: 1rem;
  }

  .veliva-form-row {
    grid-template-columns: 1fr;
  }

  .veliva-policy-content {
    padding: 3rem;
  }

  .veliva-footer-links {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .veliva-footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 55%;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 3rem;
  }

  .veliva-hero-title {
    font-size: 3.8rem;
  }

  .veliva-hero-subtitle {
    font-size: 1.8rem;
  }

  .veliva-hero-cta {
    flex-direction: column;
  }

  .veliva-schedule-time,
  .veliva-schedule-info,
  .veliva-schedule-level {
    width: 100%;
    margin-bottom: 1rem;
  }

  .veliva-testimonial {
    padding: 3rem 2rem;
  }

  .veliva-testimonial-author {
    flex-direction: column;
    gap: 1rem;
  }
  .veliva-success-actions {
    gap: 1rem
    flex-direction: column;
}

  .veliva-contact-info,
  .veliva-contact-form-container {
    padding: 3rem 2rem;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 52%;
  }

  .veliva-btn {
    padding: 1rem 2rem;
  }

  .veliva-service-card {
    padding: 2rem;
  }

  .veliva-contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .veliva-policy-content {
    padding: 2rem;
  }

  h1,
  .veliva-hero-title {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  h3 {
    font-size: 2.4rem;
  }
}
