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

:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.ad-disclosure {
    background: #fef3cd;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #856404;
    border-bottom: 1px solid #ffeaa7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    position: sticky;
    top: 29px;
    z-index: 999;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    padding: 60px 6%;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 520px;
    padding-right: 40px;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-content-left p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-image-overlap {
    flex: 1.2;
    position: relative;
    transform: translateY(-30px) translateX(30px);
}

.hero-image-overlap img {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.cta-primary:hover {
    background: #2980b9;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    margin-left: 16px;
}

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

.intro-asymmetric {
    display: flex;
    padding: 100px 6%;
    gap: 80px;
    align-items: flex-start;
    background: var(--bg-white);
}

.text-block-narrow {
    flex: 1.5;
    max-width: 620px;
}

.text-block-narrow h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: var(--primary-color);
    font-weight: 700;
}

.text-block-narrow p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.stats-overlap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateY(40px);
}

.stat-card {
    background: var(--bg-light);
    padding: 32px 40px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.services-cards {
    padding: 100px 6%;
    background: var(--bg-light);
}

.services-cards h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
}

.cards-stagger {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-offset-1 {
    margin-left: 0;
}

.card-offset-2 {
    margin-left: 60px;
}

.card-offset-3 {
    margin-left: 120px;
}

.service-card img {
    width: 100%;
    height: 280px;
    background: var(--bg-light);
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 24px 32px 16px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 16px;
    margin: 0 32px 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 32px 20px;
}

.select-service {
    margin: 0 32px 32px;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 6%;
    background: var(--bg-white);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 36px;
}

.selected-service-display {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 4px solid var(--accent-color);
}

#bookingForm label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    margin-top: 24px;
}

#bookingForm input,
#bookingForm textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

#bookingForm input:focus,
#bookingForm textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.cta-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 32px;
    transition: all 0.3s ease;
}

.cta-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.philosophy-offset {
    display: flex;
    padding: 100px 6%;
    gap: 60px;
    background: var(--bg-light);
    align-items: center;
}

.text-content-wide {
    flex: 1.3;
}

.text-content-wide h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

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

.image-insert {
    flex: 1;
    transform: translateY(-50px);
}

.image-insert img {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    background: var(--bg-light);
}

.disclaimer-block {
    padding: 60px 6%;
    background: #fff9e6;
    border-top: 2px solid #ffe066;
    border-bottom: 2px solid #ffe066;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #7a6a00;
    line-height: 1.7;
    text-align: center;
}

.footer-asymmetric {
    background: var(--primary-color);
    color: white;
    padding: 60px 6% 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 28px 6%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: #2980b9;
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-header-offset {
    padding: 100px 6% 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: left;
}

.page-header-offset h1 {
    font-size: 52px;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-header-offset .subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.about-content {
    display: flex;
    padding: 80px 6%;
    gap: 60px;
    align-items: flex-start;
}

.content-block-left {
    flex: 1;
}

.content-block-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.content-block-left p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.image-block-right {
    flex: 1;
}

.image-block-right img {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    background: var(--bg-light);
}

.values-section {
    padding: 80px 6%;
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 48px;
    text-align: center;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-minimal {
    padding: 80px 6%;
    max-width: 900px;
    margin: 0 auto;
}

.team-minimal h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.team-minimal p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-inline {
    padding: 80px 6%;
    background: var(--accent-color);
    text-align: center;
    color: white;
}

.cta-inline p {
    font-size: 28px;
    margin-bottom: 28px;
    font-weight: 600;
}

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

.cta-inline .cta-primary:hover {
    background: var(--bg-light);
}

.services-detailed {
    padding: 60px 6%;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail .service-image img {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    background: var(--bg-light);
}

.service-detail .service-info {
    flex: 1;
}

.service-detail .service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.service-detail .service-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-detail .service-info h3 {
    font-size: 20px;
    margin: 28px 0 16px;
    color: var(--primary-color);
}

.service-detail .service-info ul {
    list-style: none;
    padding: 0;
}

.service-detail .service-info ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-light);
    font-size: 16px;
}

.service-detail .service-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.booking-cta {
    padding: 80px 6%;
    background: var(--bg-light);
    text-align: center;
}

.booking-cta h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.booking-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-content {
    display: flex;
    padding: 80px 6%;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item .note {
    font-size: 14px;
    font-style: italic;
    margin-top: 12px;
}

.contact-image-block {
    flex: 1;
}

.contact-image-block img {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    background: var(--bg-light);
}

.contact-note {
    padding: 60px 6%;
    background: var(--bg-light);
    max-width: 900px;
    margin: 0 auto;
}

.contact-note h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.contact-note p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.thanks-container {
    padding: 100px 6%;
    min-height: 70vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content > p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.confirmation-details {
    background: #e8f5e9;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid #4caf50;
}

.confirmation-details p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.next-steps {
    text-align: left;
    margin-bottom: 48px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps li {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.legal-content {
    padding: 60px 6%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 16px 0 16px 32px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.legal-update {
    margin-top: 48px;
    font-style: italic;
    color: var(--text-light);
}

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

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 16px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .hero-offset,
    .intro-asymmetric,
    .philosophy-offset,
    .about-content,
    .contact-content,
    .service-detail {
        flex-direction: column;
    }

    .hero-content-left h1 {
        font-size: 38px;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3 {
        margin-left: 0;
    }

    .values-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-main {
        flex-direction: column;
    }
}