@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary-rose: #D4758C;
  --primary-mauve: #B88FA8;
  --secondary-blush: #F5E6E8;
  --accent-gold: #D4AF7A;
  --accent-peach: #F4C6B8;
  --deep-plum: #6B4C5C;
  --soft-lavender: #E8D5E8;
  --cream: #FFF9F5;
  --dark-text: #2D1B2E;
  --light-text: #8B7A8A;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 20px rgba(212, 117, 140, 0.15);
  --shadow-medium: 0 8px 30px rgba(107, 76, 92, 0.2);
  --shadow-hover: 0 12px 40px rgba(212, 117, 140, 0.25);
  --gradient-primary: linear-gradient(135deg, #D4758C 0%, #B88FA8 100%);
  --gradient-secondary: linear-gradient(135deg, #F5E6E8 0%, #E8D5E8 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF7A 0%, #F4C6B8 100%);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-text);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--deep-plum);
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--secondary-blush);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 6px;
  border: 2px solid var(--secondary-blush);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--deep-plum);
}

/* Header Styles */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(107, 76, 92, 0.08);
  transition: var(--transition-smooth);
}

header.scrolled {
  box-shadow: var(--shadow-medium);
  background: rgba(255, 255, 255, 1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.logo:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--deep-plum);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.5px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover {
  color: var(--primary-rose);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--deep-plum);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover {
  background: var(--secondary-blush);
  color: var(--primary-rose);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, var(--white) 0%, var(--secondary-blush) 100%);
  box-shadow: -5px 0 30px rgba(107, 76, 92, 0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 2px solid var(--soft-lavender);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--deep-plum);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.mobile-menu-close:hover {
  background: var(--primary-rose);
  color: var(--white);
  transform: rotate(90deg);
}

.mobile-menu nav {
  padding: 2rem 1.5rem;
}

.mobile-menu nav ul {
  flex-direction: column;
  gap: 0;
}

.mobile-menu nav li {
  width: 100%;
  border-bottom: 1px solid var(--soft-lavender);
}

.mobile-menu nav a {
  display: block;
  padding: 1.2rem 1rem;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.mobile-menu nav a:hover {
  background: var(--secondary-blush);
  padding-left: 1.5rem;
  color: var(--primary-rose);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  max-width: 500px;
  width: calc(100% - 40px);
  background: linear-gradient(135deg, var(--white) 0%, var(--secondary-blush) 100%);
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  z-index: 10000;
  border: 2px solid var(--primary-mauve);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cookie-banner-text {
  color: var(--dark-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--primary-rose);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-accept,
.cookie-decline {
  flex: 1;
  min-width: 120px;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: 'Montserrat', sans-serif;
}

.cookie-accept {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.cookie-accept:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.cookie-decline {
  background: transparent;
  color: var(--deep-plum);
  border: 2px solid var(--primary-mauve);
}

.cookie-decline:hover {
  background: var(--secondary-blush);
  border-color: var(--primary-rose);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.02);
}

.btn-outline {
  background: transparent;
  color: var(--primary-rose);
  border: 2px solid var(--primary-rose);
}

.btn-outline:hover {
  background: var(--primary-rose);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-ghost {
  background: var(--secondary-blush);
  color: var(--deep-plum);
}

.btn-ghost:hover {
  background: var(--primary-mauve);
  color: var(--white);
  transform: translateY(-3px);
}

/* Form Styles */
.form-container {
  background: linear-gradient(135deg, var(--white) 0%, var(--secondary-blush) 100%);
  padding: 3rem;
  border-radius: 30px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--soft-lavender);
}

.form-group {
  margin-bottom: 1.8rem;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--deep-plum);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid var(--soft-lavender);
  border-radius: 15px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-text);
  background: var(--white);
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-rose);
  box-shadow: 0 0 0 4px rgba(212, 117, 140, 0.1);
  transform: translateY(-2px);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--light-text);
}

.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}

.form-checkbox {
  width: 22px;
  height: 22px;
  cursor: pointer;
  accent-color: var(--primary-rose);
}

.form-error {
  color: #D64545;
  font-size: 0.85rem;
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.form-success {
  color: #4A9D5F;
  font-size: 0.85rem;
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Card Styles */
.card {
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid var(--secondary-blush);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.card:hover .card-image {
  transform: scale(1.1);
}

.card-image-wrapper {
  overflow: hidden;
  position: relative;
}

.card-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-smooth);
}

.card:hover .card-image-wrapper::after {
  opacity: 0.3;
}

.card-content {
  padding: 2rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--deep-plum);
}

.card-text {
  color: var(--light-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 2px solid var(--secondary-blush);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Accordion Styles */
.accordion {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
  border: 1px solid var(--secondary-blush);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: var(--gradient-secondary);
  transition: var(--transition-smooth);
  font-weight: 600;
  color: var(--deep-plum);
  font-size: 1.1rem;
}

.accordion-header:hover {
  background: linear-gradient(135deg, var(--secondary-blush) 0%, var(--soft-lavender) 100%);
}

.accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.4s ease;
  color: var(--primary-rose);
}

.accordion.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion.active .accordion-content {
  max-height: 1000px;
  padding: 2rem;
  border-top: 2px solid var(--soft-lavender);
}

.accordion-body {
  color: var(--light-text);
  line-height: 1.8;
}

/* Loading Spinner */
.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 249, 245, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 70px;
  height: 70px;
  border: 5px solid var(--secondary-blush);
  border-top: 5px solid var(--primary-rose);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.spinner-dots {
  display: flex;
  gap: 1rem;
}

.spinner-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gradient-primary);
  animation: bounce 1.4s infinite ease-in-out both;
}

.spinner-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.spinner-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/* Section Styles */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: var(--light-text);
  margin-bottom: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.section-divider {
  width: 100px;
  height: 4px;
  background: var(--gradient-gold);
  margin: 2rem auto;
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--secondary-blush) 50%, var(--soft-lavender) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 117, 140, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-50px, 50px) rotate(180deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.3rem;
  color: var(--light-text);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: 25px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-rose);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
  transform: rotate(360deg) scale(1.1);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--deep-plum);
}

.service-description {
  color: var(--light-text);
  line-height: 1.7;
}

/* Testimonial Section */
.testimonial-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 30px;
  box-shadow: var(--shadow-medium);
  position: relative;
  border-left: 5px solid var(--primary-rose);
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--primary-mauve);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  color: var(--dark-text);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-rose);
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 700;
  color: var(--deep-plum);
  font-size: 1.1rem;
}

.testimonial-role {
  color: var(--light-text);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem;
  border-radius: 40px;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--deep-plum) 0%, var(--primary-mauve) 100%);
  color: var(--white);
  padding: 4rem 2rem 2rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition-bounce);
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: var(--white);
  color: var(--primary-rose);
  transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-gradient-gold {
  background: var(--gradient-gold);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.shadow-medium {
  box-shadow: var(--shadow-medium);
}

.shadow-hover {
  box-shadow: var(--shadow-hover);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }
  
  nav ul {
    gap: 1.5rem;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .form-container {
    padding: 2rem;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cookie-banner {
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .form-container {
    padding: 1.5rem;
    border-radius: 20px;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cookie-accept,
  .cookie-decline {
    width: 100%;
  }
}