:root {
  --primary-color: #2c3e50;
  --secondary-color: #c9a86c;
  --accent-color: #8b7355;
  --bg-light: #faf9f7;
  --bg-cream: #f5f0e8;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --text-light: #ffffff;
  --border-color: #e0dcd4;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition-smooth: all 0.3s ease;
  --container-max: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

strong, b, p {
  color: inherit;
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
  min-height: 48px;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--secondary-color);
  color: var(--text-dark);
}

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

.btn-light {
  background-color: var(--text-light);
  color: var(--text-dark);
}

.btn-light:hover {
  background-color: var(--bg-cream);
  transform: translateY(-2px);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: var(--text-light);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.logo span {
  color: var(--secondary-color);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  position: relative;
  padding: 8px 0;
}

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

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background-color: var(--text-light);
  padding: 30px 20px;
  box-shadow: var(--shadow-hover);
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.open {
  display: flex;
  z-index: 100;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.hero-section {
  padding-top: var(--header-height);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f5f0e8 0%, #e8e2d9 100%);
  z-index: -1;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(201, 168, 108, 0.15) 0%, transparent 70%);
}

.hero-content {
  max-width: 650px;
}

.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary-color);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 8px 16px;
  background-color: rgba(201, 168, 108, 0.15);
  border-radius: 30px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.15;
  margin-bottom: 25px;
}

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

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.about-preview {
  background-color: var(--text-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

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

.about-image::after {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 3px solid var(--secondary-color);
  border-radius: 12px;
  z-index: -1;
}

.about-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 35px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

.services-section {
  background-color: var(--bg-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--text-light);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--secondary-color);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

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

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

.service-icon {
  font-size: 48px;
  margin-bottom: 25px;
  display: block;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.service-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 20px;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link:hover {
  color: var(--primary-color);
}

.advantages-section {
  background-color: var(--text-light);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.advantage-item {
  text-align: center;
  padding: 30px 20px;
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background-color: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
}

.advantage-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.advantage-item p {
  font-size: 14px;
  color: var(--text-muted);
}

.reviews-section {
  background-color: var(--bg-cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.review-card {
  background-color: var(--text-light);
  border-radius: 12px;
  padding: 35px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 80px;
  color: var(--secondary-color);
  opacity: 0.15;
  font-family: serif;
  line-height: 1;
}

.review-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--bg-cream);
}

.review-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
}

.review-rating {
  color: var(--secondary-color);
  font-size: 14px;
  margin-top: 4px;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3d5267 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 168, 108, 0.2) 0%, transparent 70%);
}

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

.cta-section h2 {
  font-size: 40px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.team-section {
  background-color: var(--text-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  background-color: var(--bg-cream);
}

.team-member h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.team-role {
  font-size: 14px;
  color: var(--secondary-color);
  font-weight: 500;
}

.gallery-section {
  background-color: var(--bg-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-overlay span {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
}

.contact-section {
  background-color: var(--text-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 35px;
  font-size: 16px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item span {
  font-size: 15px;
  color: var(--text-dark);
}

.contact-item a {
  font-size: 15px;
  color: var(--accent-color);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.contact-form {
  background-color: var(--bg-light);
  padding: 45px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--text-light);
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

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

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
  padding-top: var(--header-height);
}

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

.thank-you-icon {
  font-size: 80px;
  margin-bottom: 30px;
}

.thank-you-content h1 {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.thank-you-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.faq-section {
  background-color: var(--bg-light);
}

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

.faq-item {
  background-color: var(--text-light);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  padding: 25px 30px;
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background-color: var(--bg-cream);
}

.faq-icon {
  font-size: 24px;
  color: var(--secondary-color);
  transition: var(--transition-smooth);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

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

.faq-answer-content {
  padding: 0 30px 25px;
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-section {
  background-color: var(--bg-light);
  padding-top: calc(var(--header-height) + 80px);
}

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

.legal-content h1 {
  font-size: 38px;
  color: var(--primary-color);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}

.legal-content h2 {
  font-size: 24px;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-content ul {
  margin-left: 25px;
  margin-bottom: 20px;
}

.legal-content li {
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.7;
}

footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.7;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--text-light);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

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

.cookie-consent {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: var(--text-light);
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  max-width: 420px;
  z-index: 2000;
  display: block;
}

.cookie-consent h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.cookie-consent p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 13px;
  min-height: 40px;
}

.page-hero {
  padding-top: var(--header-height);
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.page-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-muted);
}

.service-detail-section {
  background-color: var(--text-light);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
}

.service-detail-content h1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-detail-content .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 25px;
  display: block;
}

.service-detail-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-detail-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.service-detail-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.service-detail-content li {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

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

.process-step::after {
  content: "";
  position: absolute;
  top: 35px;
  right: -15px;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 70px;
  height: 70px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-light);
}

.process-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-muted);
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-step::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  nav ul {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .about-grid,
  .contact-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-image {
    order: -1;
  }
  
  .services-grid,
  .reviews-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-section h2 {
    font-size: 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent {
    left: 20px;
    right: 20px;
    max-width: none;
    bottom: 20px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  .page-hero {
    min-height: 40vh;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 25px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}
