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

:root {
  --ebony-dark: #1a1a1a;
  --ebony-medium: #2d2d2d;
  --champagne-gold: #d4af37;
  --champagne-light: #f4e4bc;
  --deep-crimson: #8b0000;
  --crimson-light: #a52a2a;
  --cream-white: #faf9f6;
  --warm-gray: #8a8a8a;
  --soft-shadow: rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--cream-white);
  color: var(--ebony-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--ebony-dark);
}

a {
  color: var(--champagne-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--deep-crimson);
}


.piano-header {
  background: var(--ebony-dark);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.piano-icon {
  font-size: 2.5rem;
  color: var(--champagne-gold);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream-white);
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--champagne-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-navigation {
  display: flex;
  gap: 2rem;
}

.main-navigation a {
  color: var(--cream-white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--champagne-gold);
  transition: width 0.3s ease;
}

.main-navigation a:hover::after {
  width: 100%;
}

.main-navigation a:hover {
  color: var(--champagne-gold);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--cream-white);
  font-size: 1.5rem;
  cursor: pointer;
}


.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--ebony-dark) 0%, var(--ebony-medium) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="keys" width="10" height="10" patternUnits="userSpaceOnUse"><rect width="10" height="5" fill="%23d4af37" opacity="0.03"/><rect y="5" width="10" height="5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23keys)"/></svg>');
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  color: var(--cream-white);
}

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

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

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--champagne-gold);
  color: var(--ebony-dark);
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: var(--deep-crimson);
  color: var(--cream-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--cream-white);
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid var(--champagne-gold);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-secondary:hover {
  background: var(--champagne-gold);
  color: var(--ebony-dark);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.piano-keyboard-graphic {
  width: 300px;
  height: 300px;
  background: linear-gradient(180deg, var(--ebony-dark) 0%, var(--ebony-medium) 100%);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.piano-keys {
  display: flex;
  gap: 4px;
  justify-content: center;
}

.white-key {
  width: 30px;
  height: 200px;
  background: var(--cream-white);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.black-key {
  width: 20px;
  height: 120px;
  background: var(--ebony-dark);
  border-radius: 0 0 3px 3px;
  position: absolute;
  margin-left: -10px;
}

.key-row {
  position: relative;
  display: flex;
  gap: 4px;
}


.section-padding {
  padding: 6rem 1.5rem;
}

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

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

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--champagne-gold);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 600px;
  margin: 1.5rem auto 0;
}


.about-section {
  background: var(--cream-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-frame {
  width: 100%;
  height: 500px;
  background: var(--ebony-dark);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1rem;
}

.feature-list li::before {
  content: '♪';
  position: absolute;
  left: 0;
  color: var(--champagne-gold);
  font-size: 1.2rem;
}


.services-section {
  background: linear-gradient(180deg, var(--cream-white) 0%, var(--champagne-light) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--cream-white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 4px solid var(--champagne-gold);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top right, var(--champagne-light), transparent);
  opacity: 0.5;
}

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

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--ebony-dark);
}

.service-card p {
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--deep-crimson);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-block;
  color: var(--ebony-dark);
  font-weight: 600;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--champagne-gold);
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--deep-crimson);
  border-bottom-color: var(--deep-crimson);
}


.advantages-section {
  background: var(--ebony-dark);
  color: var(--cream-white);
}

.advantages-section .section-title {
  color: var(--cream-white);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.advantage-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.advantage-item h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--champagne-gold);
}

.advantage-item p {
  opacity: 0.85;
  line-height: 1.7;
}


.team-section {
  background: var(--cream-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: var(--cream-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.team-image {
  height: 320px;
  background: var(--ebony-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.team-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--champagne-gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.team-bio {
  color: var(--warm-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}


.reviews-section {
  background: var(--champagne-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: var(--cream-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.review-stars {
  color: var(--champagne-gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  color: var(--ebony-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ebony-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-name {
  font-weight: 600;
  color: var(--ebony-dark);
}

.review-location {
  font-size: 0.85rem;
  color: var(--warm-gray);
}


.process-section {
  background: var(--cream-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--ebony-dark);
  color: var(--champagne-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 1.5rem;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--warm-gray);
  line-height: 1.7;
}


.contact-section {
  background: var(--ebony-dark);
  color: var(--cream-white);
}

.contact-section .section-title {
  color: var(--cream-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  padding-right: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--champagne-gold);
  margin-top: 0.25rem;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--champagne-gold);
}

.contact-item p {
  opacity: 0.85;
  margin: 0;
}

.contact-form {
  background: var(--cream-white);
  border-radius: 8px;
  padding: 2.5rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--champagne-gold);
}

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


.map-section {
  background: var(--cream-white);
  padding: 0;
}

.map-container {
  width: 100%;
  height: 400px;
  background: var(--ebony-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-white);
}


.piano-footer {
  background: var(--ebony-dark);
  color: var(--cream-white);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand p {
  margin-top: 1rem;
  opacity: 0.75;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--champagne-gold);
}

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

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

.footer-links a {
  color: var(--cream-white);
  opacity: 0.75;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--champagne-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}


.cookie-consent-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: var(--ebony-dark);
  color: var(--cream-white);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  max-width: 400px;
  display: none;
}

.cookie-consent-banner.visible {
  display: block;
  animation: slideUp 0.5s ease;
}

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

.cookie-consent-banner h4 {
  margin: 0 0 0.75rem;
  color: var(--champagne-gold);
  font-size: 1rem;
}

.cookie-consent-banner p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background: var(--champagne-gold);
  color: var(--ebony-dark);
}

.cookie-btn-accept:hover {
  background: var(--deep-crimson);
  color: var(--cream-white);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--cream-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  border-color: var(--cream-white);
}


.faq-section {
  background: var(--cream-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ebony-dark);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--deep-crimson);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--champagne-gold);
  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;
  color: var(--warm-gray);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 1rem;
}


.gallery-section {
  background: var(--champagne-light);
}

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

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ebony-medium);
}

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

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

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

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

.gallery-overlay h4 {
  color: var(--cream-white);
  margin: 0;
  font-size: 1.1rem;
}

.gallery-overlay p {
  color: var(--champagne-gold);
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
}


.thank-you-section {
  min-height: 100vh;
  background: var(--ebony-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream-white);
  padding: 6rem 1.5rem;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  color: var(--champagne-gold);
}

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

.thank-you-message {
  font-size: 1.25rem;
  opacity: 0.85;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}


.legal-section {
  background: var(--cream-white);
  padding: 8rem 1.5rem 4rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--ebony-dark);
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}


.detail-hero {
  background: var(--ebony-dark);
  color: var(--cream-white);
  padding: 10rem 1.5rem 4rem;
  text-align: center;
}

.detail-hero h1 {
  font-size: 3rem;
  color: var(--cream-white);
  margin-bottom: 1rem;
}

.detail-hero p {
  font-size: 1.25rem;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto;
}

.detail-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: center;
}

.detail-grid.reverse {
  direction: rtl;
}

.detail-grid.reverse > * {
  direction: ltr;
}

.detail-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.detail-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--warm-gray);
}

.detail-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: var(--ebony-medium);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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


.pricing-table {
  background: var(--cream-white);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
}

.pricing-table h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--champagne-gold);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-service {
  font-weight: 500;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  color: var(--deep-crimson);
  font-weight: 600;
}


.cta-section {
  background: linear-gradient(135deg, var(--deep-crimson) 0%, var(--crimson-light) 100%);
  color: var(--cream-white);
  text-align: center;
  padding: 5rem 1.5rem;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: var(--cream-white);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--ebony-dark);
  padding: 1rem;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu a {
  display: block;
  padding: 1rem;
  color: var(--cream-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .about-grid,
  .contact-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .section-padding {
    padding: 4rem 1.5rem;
  }

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

  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cookie-consent-banner {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }

  .detail-hero h1 {
    font-size: 2.25rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 1rem;
  }

  .logo-text {
    font-size: 1.25rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .service-card {
    padding: 1.5rem;
  }

  .process-step {
    padding: 1rem;
  }

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