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

:root {
    --primary-color: #2a2a2a;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-heavy: 0 10px 40px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

.visual-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-cookie:hover {
    background: #c0392b;
}

.btn-cookie-alt {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.nav-asymmetric {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 20px 0;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 4px 0;
    transition: 0.3s;
}

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

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

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

.hero-asymmetric {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 600px;
    margin-left: 10%;
    z-index: 2;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 22px;
    color: #666;
    margin-bottom: 36px;
    line-height: 1.5;
}

.hero-visual-block {
    position: absolute;
    right: -100px;
    top: 15%;
    width: 500px;
    height: 500px;
    transform: rotate(12deg);
    z-index: 1;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.intro-offset {
    padding: 80px 30px;
    background: var(--light-bg);
}

.intro-text-block {
    max-width: 800px;
    margin-left: 20%;
}

.intro-lead {
    font-size: 28px;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 300;
}

.story-section {
    padding: 100px 30px;
}

.story-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image-left {
    flex: 1;
    transform: translateY(-40px);
}

.story-img {
    min-height: 400px;
    border-radius: 8px;
}

.story-text-right {
    flex: 1;
    transform: translateY(40px);
}

.story-text-right h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-text-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.services-highlight {
    padding: 100px 30px;
    background: var(--primary-color);
    color: var(--white);
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 15%;
}

.section-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 12px;
}

.services-header-offset h2 {
    font-size: 48px;
    font-weight: 700;
}

.services-asymmetric-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    color: var(--text-color);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    position: relative;
}

.service-card.offset-1 {
    transform: translateY(-20px);
}

.service-card.offset-2 {
    transform: translateY(20px);
}

.service-card.offset-3 {
    transform: translateY(-30px);
}

.service-card.offset-4 {
    transform: translateY(15px);
}

.service-card.offset-5 {
    transform: translateY(-15px);
}

.service-card.offset-6 {
    transform: translateY(25px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.price-tag {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-service {
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 30px;
    background: var(--light-bg);
}

.trust-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content-wrap h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    box-shadow: var(--shadow);
    transform: rotate(-1deg);
}

.testimonial-card:nth-child(2) {
    transform: rotate(1deg) translateY(20px);
}

.testimonial-card:nth-child(3) {
    transform: rotate(-0.5deg) translateY(-10px);
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-color);
}

.process-section {
    padding: 100px 30px;
}

.process-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.process-visual {
    flex: 1;
}

.process-img {
    min-height: 500px;
    border-radius: 8px;
    transform: rotate(-3deg);
}

.process-steps {
    flex: 1;
}

.process-steps h2 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 700;
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.step-content h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    font-size: 16px;
}

.cta-section-inline {
    padding: 80px 30px;
    background: var(--accent-color);
    color: var(--white);
    text-align: center;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.cta-content-block {
    transform: skewY(2deg);
}

.cta-content-block h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-block p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--white);
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.features-offset {
    padding: 100px 30px;
}

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

.feature-block {
    flex: 1;
    min-width: 240px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 8px;
}

.feature-block:nth-child(1) {
    transform: translateY(-20px);
}

.feature-block:nth-child(2) {
    transform: translateY(20px);
}

.feature-block:nth-child(3) {
    transform: translateY(-15px);
}

.feature-block:nth-child(4) {
    transform: translateY(15px);
}

.feature-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-block p {
    color: #666;
    font-size: 16px;
}

.booking-section {
    padding: 100px 30px;
    background: var(--light-bg);
}

.booking-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.booking-intro {
    margin-bottom: 40px;
}

.booking-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.booking-intro p {
    font-size: 18px;
    color: #666;
}

.booking-form {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta-sticky {
    position: sticky;
    bottom: 0;
    background: var(--primary-color);
    padding: 20px 0;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.sticky-cta-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-text {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    padding: 12px 32px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #c0392b;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-col p {
    color: #ccc;
    font-size: 14px;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #999;
    font-size: 14px;
}

.page-hero-offset {
    padding: 100px 30px 60px;
    background: var(--light-bg);
}

.page-hero-content {
    max-width: 900px;
    margin-left: 15%;
}

.page-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
}

.about-story {
    padding: 100px 30px;
}

.story-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text-block {
    flex: 1;
}

.story-text-block h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-text-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.story-visual-block {
    flex: 1;
    transform: translateY(30px) rotate(2deg);
}

.about-img-1 {
    min-height: 400px;
    border-radius: 8px;
}

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

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

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

.philosophy-item {
    flex: 1;
    min-width: 280px;
}

.philosophy-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 700;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
}

.team-approach {
    padding: 100px 30px;
}

.team-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-visual {
    flex: 1;
    transform: translateY(-30px) rotate(-2deg);
}

.about-img-2 {
    min-height: 400px;
    border-radius: 8px;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
}

.team-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.values-offset {
    padding: 100px 30px;
    background: var(--light-bg);
}

.values-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.values-wrapper h2 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.values-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card:nth-child(1) {
    transform: translateY(-15px);
}

.value-card:nth-child(2) {
    transform: translateY(15px);
}

.value-card:nth-child(3) {
    transform: translateY(10px);
}

.value-card:nth-child(4) {
    transform: translateY(-10px);
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.mission-statement {
    padding: 100px 30px;
}

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

.mission-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
}

.mission-content p {
    font-size: 22px;
    margin-bottom: 24px;
    color: #555;
    line-height: 1.7;
}

.about-cta {
    padding: 80px 30px;
    background: var(--accent-color);
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 700;
}

.services-hero {
    padding: 100px 30px 60px;
    background: var(--primary-color);
    color: var(--white);
}

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

.services-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-hero-content p {
    font-size: 20px;
    color: #ccc;
}

.services-intro {
    padding: 60px 30px;
    background: var(--light-bg);
}

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

.intro-text p {
    font-size: 20px;
    color: #666;
}

.services-detailed {
    padding: 80px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

.service-img-1,
.service-img-2,
.service-img-3,
.service-img-4,
.service-img-5,
.service-img-6 {
    min-height: 400px;
    border-radius: 8px;
}

.service-img-1 {
    transform: rotate(2deg);
}

.service-img-2 {
    transform: rotate(-2deg);
}

.service-img-3 {
    transform: rotate(1.5deg);
}

.service-img-4 {
    transform: rotate(-1.5deg);
}

.service-img-5 {
    transform: rotate(2.5deg);
}

.service-img-6 {
    transform: rotate(-2.5deg);
}

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

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 700;
}

.price-display {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #666;
}

.equipment-list {
    list-style: none;
    margin-bottom: 30px;
}

.equipment-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    color: #555;
}

.equipment-list li:before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 8px;
}

.rental-info {
    padding: 80px 30px;
    background: var(--light-bg);
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-block {
    flex: 1;
    min-width: 240px;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.info-block p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.services-cta {
    padding: 80px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ccc;
}

.contact-hero {
    padding: 100px 30px 60px;
    background: var(--light-bg);
}

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

.contact-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 20px;
    color: #666;
}

.contact-main {
    padding: 100px 30px;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.contact-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-item p,
.contact-item a {
    font-size: 16px;
    color: #666;
    text-decoration: none;
}

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

.contact-notes {
    padding: 24px;
    background: var(--light-bg);
    border-radius: 8px;
}

.contact-notes h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-notes p {
    font-size: 16px;
    color: #666;
}

.contact-visual {
    flex: 1;
    transform: translateY(30px) rotate(-2deg);
}

.contact-img {
    min-height: 500px;
    border-radius: 8px;
}

.faq-section {
    padding: 80px 30px;
    background: var(--light-bg);
}

.faq-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-wrapper h2 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.contact-cta {
    padding: 80px 30px;
    text-align: center;
}

.thanks-hero {
    padding: 100px 30px;
    background: var(--light-bg);
    text-align: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #27ae60;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-lead {
    font-size: 22px;
    color: #666;
}

.thanks-details {
    padding: 80px 30px;
}

.details-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.details-wrapper h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.next-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 280px;
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.step-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-info p {
    font-size: 16px;
    color: #666;
}

.thanks-info {
    padding: 60px 30px;
    background: var(--light-bg);
}

.info-blocks {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.info-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.info-card a {
    color: var(--accent-color);
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

.thanks-additional {
    padding: 80px 30px;
}

.additional-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-wrapper h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.tips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tip-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 8px;
}

.tip-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.tip-item p {
    font-size: 16px;
    color: #666;
}

.thanks-cta {
    padding: 80px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.legal-page {
    padding: 80px 30px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.legal-updated {
    color: #999;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 24px;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-container h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #555;
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: none;
}

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

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

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

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

.cookie-table th {
    font-weight: 700;
}

@media (max-width: 1024px) {
    .hero-visual-block {
        width: 400px;
        height: 400px;
    }

    .hero-title {
        font-size: 48px;
    }

    .story-grid,
    .process-layout,
    .team-layout,
    .contact-layout {
        flex-direction: column;
    }

    .story-image-left,
    .story-text-right,
    .team-visual {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        display: none;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        text-align: center;
    }

    .hero-content-offset {
        margin-left: 0;
    }

    .hero-visual-block {
        position: relative;
        right: 0;
        margin-top: 40px;
        width: 100%;
        height: 300px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-text-block {
        margin-left: 0;
    }

    .intro-lead {
        font-size: 22px;
    }

    .services-header-offset {
        padding-left: 0;
    }

    .service-card {
        transform: translateY(0) !important;
    }

    .feature-block {
        transform: translateY(0) !important;
    }

    .value-card {
        transform: translateY(0) !important;
    }

    .testimonial-card {
        transform: rotate(0) translateY(0) !important;
    }

    .process-img {
        transform: rotate(0);
    }

    .page-hero-content {
        margin-left: 0;
    }

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

    .sticky-cta-bar {
        flex-direction: column;
        text-align: center;
    }

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