@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --jewel-emerald: #0d5c5c;
  --jewel-sapphire: #1e3a5f;
  --jewel-amethyst: #5c3d6e;
  --jewel-ruby: #7c2943;
  --warm-neutral-cream: #f8f5f0;
  --warm-neutral-sand: #e8e0d5;
  --warm-neutral-terracotta: #c4a27c;
  --text-dark: #1a1a2e;
  --text-light: #f8f5f0;
  --accent-gold: #d4a853;
  --accent-coral: #e07a5f;
  --glass-opacity: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
}

strong, p, a, button, .body-text {
  color: inherit;
}

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


.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--jewel-emerald), var(--jewel-amethyst));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-item {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--jewel-emerald), var(--accent-coral));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-item:hover::after,
.navbar-item.active::after {
  width: 100%;
}

.navbar-item:hover {
  color: var(--jewel-emerald);
}

.navbar-burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
}

.navbar-burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-menu.is-active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 1rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--warm-neutral-sand);
}


.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--jewel-emerald) 0%, var(--jewel-sapphire) 30%, var(--jewel-amethyst) 70%, var(--jewel-ruby) 100%);
  /* z-index: -2; */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(13, 92, 92, 0.3), rgba(92, 61, 110, 0.3));
  /* z-index: -1; */
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  /* z-index: -1; */
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-cta-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-coral));
  color: white;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 168, 83, 0.4);
}

.hero-cta-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: white;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  margin-left: 1rem;
  transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.hero-image-container {
  position: relative;
}

.hero-image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent-gold);
  border-radius: 20px;
  z-index: -1;
}

.hero-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}


.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--jewel-sapphire);
  margin-bottom: 3rem;
  font-weight: 400;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--jewel-emerald), var(--accent-coral));
  margin-bottom: 2rem;
  border-radius: 2px;
}


.about-content {
  padding: 2rem;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

.about-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--jewel-emerald), var(--jewel-sapphire));
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}


.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--jewel-emerald), var(--accent-coral));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--warm-neutral-cream), var(--warm-neutral-sand));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.service-title {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-description {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--jewel-emerald), var(--jewel-amethyst));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--jewel-emerald);
  font-weight: 600;
  position: relative;
}

.service-link::after {
  content: ' →';
  transition: transform 0.3s ease;
}

.service-link:hover::after {
  transform: translateX(5px);
}


.features-section {
  background: linear-gradient(135deg, var(--jewel-sapphire), var(--jewel-amethyst));
  color: white;
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon-wrapper {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  transition: all 0.4s ease;
}

.feature-item:hover .feature-icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.features-section .feature-title {
  color: white;
}

.feature-description {
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.95rem;
}

.features-section .feature-description {
  color: rgba(255, 255, 255, 0.8);
}


.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--accent-gold);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
  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(--accent-gold);
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-location {
  font-size: 0.85rem;
  color: #888;
}

.testimonial-rating {
  color: var(--accent-gold);
  margin-top: 0.5rem;
}


.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--jewel-emerald);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-bio {
  color: #666;
  font-size: 0.9rem;
}


.cta-section {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-coral));
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: white;
  color: var(--text-dark);
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}


.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.contact-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--jewel-emerald), var(--jewel-sapphire));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
}

.contact-label {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-value {
  font-weight: 600;
  color: var(--text-dark);
}

.contact-value a {
  color: var(--jewel-emerald);
}


.contact-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--warm-neutral-sand);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--warm-neutral-cream);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--jewel-emerald);
  box-shadow: 0 0 0 4px rgba(13, 92, 92, 0.1);
}

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

.form-button {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--jewel-emerald), var(--jewel-sapphire));
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 92, 92, 0.3);
}


.footer {
  background: linear-gradient(135deg, var(--jewel-sapphire), var(--jewel-amethyst));
  color: white;
  padding: 80px 0 30px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

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


.cookie-consent-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  max-width: 450px;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  display: block;
}

.cookie-consent-banner.hidden {
  display: none;
}

.cookie-content {
  margin-bottom: 1.5rem;
}

.cookie-title {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.cookie-text {
  font-size: 0.9rem;
  color: #666;
}

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

.cookie-btn {
  flex: 1;
  padding: 0.8rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.9rem;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--jewel-emerald), var(--jewel-sapphire));
  color: white;
}

.cookie-btn-decline {
  background: var(--warm-neutral-sand);
  color: var(--text-dark);
}

.cookie-btn:hover {
  transform: translateY(-2px);
}


.page-header {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--jewel-emerald), var(--jewel-sapphire), var(--jewel-amethyst));
  text-align: center;
  position: relative;
}

.page-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}

.page-breadcrumb {
  color: rgba(255, 255, 255, 0.8);
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.page-breadcrumb a:hover {
  color: white;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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


.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--jewel-emerald);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--warm-neutral-cream);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: #666;
}


.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border: 3px solid var(--accent-gold);
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--accent-gold);
  color: white;
  padding: 0.3rem 2.5rem;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-name {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--jewel-emerald), var(--jewel-amethyst));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-period {
  font-size: 0.9rem;
  color: #888;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--warm-neutral-sand);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--jewel-emerald);
  font-weight: bold;
}

.pricing-button {
  display: block;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--jewel-emerald), var(--jewel-sapphire));
  color: white;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(13, 92, 92, 0.3);
}


.service-detail-header {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.service-detail-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--jewel-emerald), var(--jewel-sapphire));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.process-content h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.process-content p {
  color: #666;
}


@media screen and (max-width: 1023px) {
  .navbar-menu {
    display: none;
  }

  .navbar-burger {
    display: flex;
  }

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

  .hero-image-container {
    margin-top: 3rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .cookie-consent-banner {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-cta-secondary {
    margin-left: 0;
    margin-top: 1rem;
    display: block;
    text-align: center;
  }

  .page-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .footer {
    padding: 50px 0 20px;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}