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

:root {
    --primary-dark: #3a5a4e;
    --primary-light: #4a7a5e;
    --secondary: #f5e6d3;
    --accent: #d4926b;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
    --nav-bg: rgba(255, 255, 255, 0.9);
    --nav-border: rgba(0, 0, 0, 0.06);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: #faf8f5;
    min-height: 100vh;
}

/* Typography Scale - Consistent across all pages */
h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
}

h4, h5, h6 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

li {
    font-size: 1rem;
    line-height: 1.8;
}

a {
    font-size: inherit;
    text-decoration: none;
}

/* Sticky Navigation */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: saturate(1.2) blur(8px);
    border-bottom: 1px solid var(--nav-border);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 700;
}

.brand-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.brand-mark {
    width: 28px;
    height: 28px;
    transform: rotate(-3deg);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.nav-links li:last-child a {
    background: var(--primary-light);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
}

.nav-links li:last-child a:hover {
    background: #5a9a6e;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.nav-links a[aria-current="page"] {
    color: var(--primary-light);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.nav-cta {
    color: var(--white);
    background: var(--accent);
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.nav-cta:hover { background: #c4825b; }

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 120px 20px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo-container {
    margin-bottom: 50px;
    animation: fadeInDown 1s ease-out;
}

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

.yin-yang-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.yin-yang-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.logo-text {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-text span {
    display: block;
    font-size: 1.8rem;
    letter-spacing: 12px;
    margin-top: 10px;
}

.hero-text {
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--secondary);
}

.highlight {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--secondary);
    font-weight: 400;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

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

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

.btn-primary:hover {
    background: #c4825b;
}

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

.btn-secondary:hover {
    background: #e5d6c3;
}

.icon {
    width: 24px;
    height: 24px;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, var(--secondary) 50%, #ffffff 100%);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
}

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

.services-grid .service-card {
    width: 100%;
    max-width: 350px;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 40px 30px 30px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: visible;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--accent);
    animation: bounce 2s infinite;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.services-note {
    margin-top: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
    text-align: center;
}

.services-note a { color: var(--primary-light); text-decoration: none; font-weight: 700; }
.services-note a:hover { text-decoration: underline; }

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, var(--secondary) 50%, #ffffff 100%);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 50px;
    position: relative;
}

.benefits h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-text h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.benefit-text p {
    color: var(--text-light);
}

/* Methods Section */
.methods {
    padding: 80px 20px;
    background: var(--white);
}

.methods-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.competencies h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 2rem;
}

.competencies p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.methods-list h3 {
    color: var(--primary-dark);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.methods-list ul {
    list-style: none;
}

.methods-list li {
    padding: 15px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.methods-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.method-icon {
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.method-icon svg {
    width: 100%;
    height: 100%;
}

/* Methoden im Angebot (reuse styles) */
.services .methods-list ul {
    list-style: none;
}
.services .methods-list li {
    padding: 12px 14px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.method-bullets {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 40px;
}

.method-bullets li {
    padding: 8px 0;
    margin-bottom: 8px;
    background: none;
    border: none;
}

/* Terms Section */
.terms {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.terms h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 50px;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.term-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.term-icon {
    width: 50px;
    height: 50px;
    color: var(--accent);
    margin-bottom: 15px;
}

.term-icon svg {
    width: 100%;
    height: 100%;
}

.term-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.term-card p {
    color: var(--text-light);
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    background: rgba(58, 90, 78, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--primary-dark);
}

.info-box h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.info-box p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
}

/* Standort Section */
.location {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, var(--secondary) 50%, #ffffff 100%);
}

.location h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

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

.location-info {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.location-info p { color: var(--text-dark); }

.location-info h3 {
    margin-top: 50px;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.location-phone { color: var(--accent); text-decoration: none; font-weight: 700; }

.location-map iframe {
    width: 100%;
    min-height: 300px;
    border: 0;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--secondary);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-decoration: none;
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
}

.contact-info {
    text-align: left;
}

.contact-info h3 {
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--secondary);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 30px 20px;
}

/* Booking form */
.booking {
    margin-top: 60px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.2);
}

.booking h3 {
    margin-bottom: 16px;
}

.booking-form .form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.booking-form .form-field {
    display: flex;
    flex-direction: column;
}

.booking-form label {
    font-weight: 600;
    margin-bottom: 8px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.85);
    color: var(--text-dark);
    outline: none;
}

.booking-form textarea { resize: vertical; }

.booking-form .form-span { grid-column: 1 / -1; }

.form-consent .checkbox { display: flex; gap: 12px; align-items: flex-start; }
.form-consent a { color: var(--secondary); }

.form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.form-status { color: var(--secondary); font-weight: 600; }

.optional { color: var(--secondary); font-weight: 500; }

/* About Page (Über mich) - Modern Layout */
.about-page {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, var(--secondary) 50%, #ffffff 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 60px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-story {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.story-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

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

.story-card .card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-card .card-icon svg {
    width: 100%;
    height: 100%;
}

.story-card p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

.approach-section {
    margin-top: 80px;
}

.approach-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.approach-card {
    padding: 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.approach-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.approach-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--accent);
}

.approach-icon svg {
    width: 100%;
    height: 100%;
}

.approach-card p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* Grundlagen Page - Modern Layout */
.grundlagen-page {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, var(--secondary) 50%, #ffffff 100%);
}

.grundlagen-content {
    max-width: 1000px;
    margin: 0 auto;
}

.grundlagen-intro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.intro-card {
    padding: 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.intro-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.intro-card .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--accent);
}

.intro-card .card-icon svg {
    width: 100%;
    height: 100%;
}

.intro-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.intro-card p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

.why-coaching {
    margin-top: 80px;
}

.why-coaching > h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

.why-cards {
    display: grid;
    gap: 30px;
}

.why-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

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

.why-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-card p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

@media (max-width: 768px) {
    .story-card,
    .why-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .approach-grid,
    .grundlagen-intro {
        grid-template-columns: 1fr;
    }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2rem;
    animation: spin 10s linear infinite;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--secondary);
    text-decoration: none;
}

.footer-links a:hover { color: #ffffff; }

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 400ms ease-out, transform 400ms ease-out;
}

.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for multiple items */
.scroll-animate:nth-child(1) { transition-delay: 0ms; }
.scroll-animate:nth-child(2) { transition-delay: 100ms; }
.scroll-animate:nth-child(3) { transition-delay: 200ms; }
.scroll-animate:nth-child(4) { transition-delay: 300ms; }
.scroll-animate:nth-child(5) { transition-delay: 400ms; }
.scroll-animate:nth-child(6) { transition-delay: 500ms; }

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .yin-yang-logo,
    .footer-logo {
        animation: none;
    }

    .hero::before {
        animation: none;
    }

    .service-icon {
        animation: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { font-size: 0.95rem; }
    .logo-text {
        font-size: 2rem;
    }
    
    .logo-text span {
        font-size: 1.3rem;
    }
    
    .methods-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    .booking-form .form-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}