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

:root {
    --primary-color: #d4552f;
    --secondary-color: #2c3e50;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --background-light: #f9f9f9;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    min-width: 300px;
}

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

.main-nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
    padding: 0;
    margin-bottom: 80px;
}

.magazine-hero {
    min-height: 85vh;
}

.hero-columns {
    display: flex;
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-main {
    flex: 2;
    position: relative;
    min-height: 85vh;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: var(--white);
    padding: 60px 50px;
}

.hero-overlay h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 650px;
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
}

.hero-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
}

.featured-card {
    background: var(--background-light);
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.featured-card.dark {
    background: var(--secondary-color);
    color: var(--white);
}

.label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--primary-color);
}

.featured-card.dark .label {
    color: #f39c12;
}

.featured-card h3 {
    font-size: 1.6rem;
    line-height: 1.3;
}

.featured-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.link-arrow {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

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

.link-arrow::after {
    content: '→';
    margin-left: 8px;
}

.intro-section {
    padding: 80px 0;
}

.magazine-grid {
    display: flex;
    gap: 60px;
}

.grid-column.large {
    flex: 1.3;
}

.grid-column.small {
    flex: 1;
}

.grid-column h2 {
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: 600;
}

.grid-column p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.philosophy-section {
    padding: 100px 0;
    background: var(--white);
}

.split-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.section-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.25;
}

.split-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.vertical-image {
    width: 100%;
    height: auto;
    display: block;
}

.services-showcase {
    padding: 100px 0;
    background: var(--background-light);
}

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

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.magazine-services {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-row {
    display: flex;
    gap: 30px;
}

.service-row.dual {
    display: flex;
    gap: 30px;
}

.service-row.triple {
    display: flex;
    gap: 25px;
}

.service-card {
    background: var(--white);
    overflow: hidden;
    flex: 1;
}

.service-card.featured {
    display: flex;
    gap: 0;
    flex-direction: row;
}

.service-card.featured .service-image {
    flex: 1;
}

.service-card.featured .service-info {
    flex: 1;
    padding: 40px;
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-card.compact {
    padding: 35px 30px;
}

.service-card.compact.highlight {
    background: var(--background-light);
    border: 2px solid var(--primary-color);
}

.service-card.compact h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card.compact p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.testimonial-grid {
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    padding: 40px 35px;
    background: var(--background-light);
}

.testimonial-card.featured {
    background: var(--secondary-color);
    color: var(--white);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.booking-header {
    margin-bottom: 50px;
}

.booking-header.centered {
    text-align: center;
}

.booking-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.booking-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.booking-form {
    background: var(--white);
    padding: 50px;
    border: 1px solid var(--border-color);
}

.form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 12px 30px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background: #b84325;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn-text {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    font-size: 0.95rem;
}

.btn-text:hover {
    color: #b84325;
}

.select-service {
    width: 100%;
}

.instagram-section {
    padding: 80px 0;
}

.instagram-grid {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.instagram-item {
    flex: 1;
    overflow: hidden;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.cta-section {
    padding: 100px 0;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.main-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta span {
    font-weight: 600;
}

.sticky-cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 25px;
}

.sticky-cta .btn-primary:hover {
    background: var(--background-light);
}

.page-hero {
    background: var(--secondary-color);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.page-hero .lead {
    font-size: 1.3rem;
    opacity: 0.9;
}

.content-section {
    padding: 80px 0;
}

.grey-bg {
    background: var(--background-light);
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.philosophy-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

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

.member-image {
    margin-bottom: 25px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: auto;
    display: block;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
}

.values-section {
    padding: 80px 0;
}

.stats-section {
    padding: 80px 0;
    background: var(--background-light);
}

.stats-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.services-detail-section {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 60px;
    background: var(--white);
    border: 1px solid var(--border-color);
}

.service-detail-card.highlight-card {
    border: 3px solid var(--primary-color);
}

.service-detail-grid {
    display: flex;
}

.service-detail-grid.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    position: relative;
}

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

.badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.badge.premium {
    background: #2c3e50;
}

.service-detail-content {
    flex: 1;
    padding: 50px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.service-details-meta {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meta-item strong {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.meta-item span {
    font-size: 0.95rem;
}

.service-pricing-block {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-large {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-visual {
    flex: 1;
}

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

.contact-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.contact-item p {
    margin-bottom: 8px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
}

.map-placeholder {
    margin-bottom: 30px;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.visit-note {
    background: var(--background-light);
    padding: 30px;
}

.visit-note h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.visit-note p {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-section {
    padding: 80px 0;
}

.faq-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.centered {
    text-align: center;
}

.thanks-section {
    padding: 120px 0;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    background: var(--background-light);
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.thanks-details p {
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-details strong {
    color: var(--text-dark);
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    max-width: 600px;
    margin: 0 auto;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 30px;
    padding-left: 60px;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.steps-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.steps-list p {
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.contact-note {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.contact-note a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 60px 0 100px;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.last-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.legal-section p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

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

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--background-light);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-columns {
        flex-direction: column;
    }

    .hero-sidebar {
        flex-direction: row;
        padding: 0 20px 30px;
    }

    .magazine-grid,
    .split-layout,
    .testimonial-grid,
    .team-grid,
    .contact-grid {
        flex-direction: column;
    }

    .service-row.dual,
    .service-row.triple {
        flex-direction: column;
    }

    .service-card.featured {
        flex-direction: column;
    }

    .service-detail-grid,
    .service-detail-grid.reverse {
        flex-direction: column;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 20px);
    }

    .footer-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-column {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-sidebar {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .instagram-grid {
        flex-wrap: wrap;
    }

    .instagram-item {
        flex: 0 0 calc(50% - 10px);
    }

    .sticky-cta {
        flex-direction: column;
        bottom: 15px;
        right: 15px;
        left: 15px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero .lead {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .split-content h2 {
        font-size: 2rem;
    }

    .stats-grid {
        gap: 30px;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .service-details-meta {
        flex-direction: column;
        gap: 20px;
    }

    .footer-column {
        flex: 0 0 100%;
    }

    .booking-form {
        padding: 30px 20px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-content h1 {
        font-size: 2.2rem;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions button {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-overlay {
        padding: 40px 25px;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .featured-card {
        padding: 25px 20px;
    }

    .service-detail-content {
        padding: 30px 20px;
    }

    .price-large {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

    .legal-page h1 {
        font-size: 2.2rem;
    }
}