  /* ============================================
     Eva's Alteration Center — Stylesheet
     ============================================ */

  /* Reset & Base */
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --terracotta: #C1694F;
    --terracotta-dark: #A8553A;
    --terracotta-light: #D4896F;
    --sand: #F5EDE4;
    --sand-light: #FAF6F1;
    --sand-dark: #E8DDD2;
    --warm-white: #FDF9F5;
    --text-dark: #2D1F17;
    --text-mid: #5C4033;
    --text-light: #8B7355;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(45, 31, 23, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 31, 23, 0.10);
    --shadow-lg: 0 8px 40px rgba(45, 31, 23, 0.12);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background-color: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    font-weight: 700;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

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

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

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
  }

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

  .btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(193, 105, 79, 0.35);
  }

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

  .btn-secondary:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: translateY(-2px);
  }

  .btn-white {
    background: var(--white);
    color: var(--terracotta);
    border-color: var(--white);
  }

  .btn-white:hover {
    background: var(--sand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
  }

  .btn-outline-white:hover {
    background: var(--white);
    color: var(--terracotta);
    transform: translateY(-2px);
  }

  .btn-full {
    width: 100%;
    justify-content: center;
  }

  /* Section Labels */
  .section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
  }

  .section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--text-dark);
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-header .section-sub {
    margin: 0 auto;
  }

  /* ============================================
     Navigation
     ============================================ */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 249, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(193, 105, 79, 0.08);
    transition: all var(--transition);
  }

  .nav.scrolled {
    box-shadow: var(--shadow-sm);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
  }

  .nav-logo:hover {
    color: var(--terracotta);
  }

  .nav-logo-icon {
    flex-shrink: 0;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color var(--transition);
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    border-radius: 2px;
    transition: width var(--transition);
  }

  .nav-links a:hover {
    color: var(--terracotta);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-cta {
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
    transition: all var(--transition) !important;
  }

  .nav-cta::after {
    display: none;
  }

  .nav-cta:hover {
    background: var(--terracotta-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(193, 105, 79, 0.3);
  }

  /* Mobile Toggle */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
  }

  .nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition);
  }

  .nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 249, 245, 0.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .mobile-menu.active {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .mobile-menu-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color var(--transition);
  }

  .mobile-menu-link:hover {
    color: var(--terracotta);
  }

  .mobile-menu-cta {
    margin-top: 16px;
    background: var(--terracotta);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
  }

  /* ============================================
     Hero
     ============================================ */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
  }

  .hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background:
      radial-gradient(circle at 70% 30%, rgba(193, 105, 79, 0.06) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(245, 237, 228, 0.8) 0%, transparent 40%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

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

  .hero-badge {
    display: inline-block;
    background: var(--sand);
    color: var(--terracotta);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
  }

  .hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.15;
  }

  .hero-headline em {
    color: var(--terracotta);
    font-style: italic;
  }

  .hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
  }

  .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
  }

  /* Hero Image */
  .hero-image {
    position: relative;
  }

  .hero-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
  }

  .hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--sand);
    border-radius: var(--radius-lg);
    z-index: 0;
  }

  .hero-floating-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    z-index: 2;
  }

  .hero-floating-card-inner {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hfc-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--terracotta);
  }

  .hfc-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.3;
  }

  /* ============================================
     Services
     ============================================ */
  .services {
    padding: 100px 0;
    background: var(--sand-light);
  }

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

  .service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition);
    border: 1px solid rgba(193, 105, 79, 0.06);
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(193, 105, 79, 0.12);
  }

  .service-icon {
    width: 56px;
    height: 56px;
    background: var(--sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--transition);
  }

  .service-card:hover .service-icon {
    background: var(--terracotta);
  }

  .service-card:hover .service-icon svg path,
  .service-card:hover .service-icon svg circle,
  .service-card:hover .service-icon svg rect,
  .service-card:hover .service-icon svg line,
  .service-card:hover .service-icon svg polyline {
    stroke: var(--white);
  }

  .service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-dark);
  }

  .service-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
  }

  /* ============================================
     About
     ============================================ */
  .about {
    padding: 100px 0;
    background: var(--warm-white);
  }

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

  .about-images {
    position: relative;
  }

  .about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

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

  .about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--warm-white);
  }

  .about-img-secondary img {
    width: 300px;
    height: 350px;
    object-fit: cover;
  }

  .about-experience {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
  }

  .about-exp-number {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
  }

  .about-exp-year {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
  }

  .about-exp-text {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 4px;
  }

  .about-content {
    max-width: 480px;
  }

  .about-content .section-title {
    text-align: left;
  }

  .about-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
  }

  .af-icon {
    width: 36px;
    height: 36px;
    background: var(--sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  /* ============================================
     Gallery
     ============================================ */
  .gallery {
    padding: 100px 0;
    background: var(--sand-light);
  }

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

  .gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 31, 23, 0.6) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
  }

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

  .gallery-overlay span {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
  }

  /* ============================================
     CTA Banner
     ============================================ */
  .cta-banner {
    padding: 80px 0;
    background: var(--terracotta);
    position: relative;
    overflow: hidden;
  }

  .cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
  }

  .cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
  }

  .cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
  }

  .cta-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: 12px;
  }

  .cta-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
  }

  .cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
  }

  /* ============================================
     Contact
     ============================================ */
  .contact {
    padding: 100px 0;
    background: var(--warm-white);
  }

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

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--sand-light);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all var(--transition);
  }

  .contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
  }

  .contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
  }

  .contact-card:hover .contact-card-icon {
    background: var(--sand);
  }

  .contact-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 6px;
  }

  .contact-card p,
  .contact-card a {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
  }

  .contact-card a:hover {
    color: var(--terracotta);
  }

  /* Contact Form */
  .contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(193, 105, 79, 0.06);
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--sand-light);
    transition: all var(--transition);
    outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(193, 105, 79, 0.1);
  }

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

  .form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--sand);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--terracotta-dark);
  }

  .form-success.show {
    display: flex;
  }

  /* ============================================
     Map
     ============================================ */
  .map-section {
    background: var(--sand-dark);
  }

  .map-section iframe {
    display: block;
    width: 100%;
    height: 320px;
    filter: saturate(0.7) contrast(1.05);
  }

  /* ============================================
     Footer
     ============================================ */
  .footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
  }

  .footer-logo:hover {
    color: var(--white);
  }

  .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
  }

  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    font-size: 0.9rem;
    transition: color var(--transition);
  }

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

  .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
  }

  .footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.7;
  }

  .footer-contact a:hover {
    color: var(--terracotta-light);
  }

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

  .footer-bottom p {
    font-size: 0.82rem;
    opacity: 0.5;
  }

  /* ============================================
     Animations
     ============================================ */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ============================================
     Responsive
     ============================================ */
  @media (max-width: 1024px) {
    .hero-inner {
      gap: 40px;
    }

    .hero-image-wrapper img {
      height: 540px;
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

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

    .nav-toggle {
      display: flex;
    }

    .hero {
      padding: 100px 0 60px;
      min-height: auto;
    }

    .hero-inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .hero-content {
      max-width: 100%;
      text-align: center;
    }

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

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

    .hero-image {
      max-width: 400px;
      margin: 0 auto;
    }

    .hero-image-wrapper img {
      height: 450px;
    }

    .hero-floating-card {
      left: 10px;
      bottom: 20px;
    }

    .hero-image-accent {
      display: none;
    }

    .services {
      padding: 70px 0;
    }

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

    .about {
      padding: 70px 0;
    }

    .about-inner {
      grid-template-columns: 1fr;
      gap: 60px;
    }

    .about-images {
      max-width: 400px;
      margin: 0 auto;
    }

    .about-img-secondary {
      right: -10px;
      bottom: -20px;
    }

    .about-img-secondary img {
      width: 200px;
      height: 240px;
    }

    .about-experience {
      left: -10px;
      top: -10px;
    }

    .about-content .section-title {
      text-align: center;
    }

    .about-content {
      max-width: 100%;
      text-align: center;
    }

    .about-features {
      grid-template-columns: 1fr;
    }

    .about-feature {
      justify-content: center;
    }

    .gallery {
      padding: 70px 0;
    }

    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .cta-banner {
      padding: 60px 0;
    }

    .cta-inner {
      flex-direction: column;
      text-align: center;
      gap: 28px;
    }

    .cta-actions {
      flex-direction: column;
      width: 100%;
    }

    .cta-actions .btn {
      justify-content: center;
    }

    .contact {
      padding: 70px 0;
    }

    .contact-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .contact-form-wrap {
      padding: 28px;
    }

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

    .footer-inner {
      grid-template-columns: 1fr;
      gap: 36px;
    }

    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }

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

    .hero {
      padding: 90px 0 50px;
    }

    .hero-headline {
      font-size: 1.8rem;
    }

    .hero-actions {
      flex-direction: column;
      align-items: center;
    }

    .hero-actions .btn {
      width: 100%;
      justify-content: center;
    }

    .hero-trust {
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

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

    .contact-form-wrap {
      padding: 20px;
    }
  }
