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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

.container-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.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;
    font-size: 14px;
}

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.main-header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section .brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 6px 14px;
    border-radius: 4px;
}

.disclosure-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.hero-asymmetric {
    background-color: #fafbfc;
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-image-offset {
    flex: 1.2;
    position: relative;
    transform: translateX(-40px);
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-text-block {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(30px);
}

.hero-text-block h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text-block p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.intro-offset {
    padding: 100px 0;
    background-color: #ffffff;
}

.intro-left {
    max-width: 550px;
    transform: translateX(80px);
    margin-bottom: 60px;
}

.intro-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.intro-left p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.intro-right {
    display: flex;
    justify-content: flex-end;
    transform: translateX(-60px);
}

.section-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.services-grid {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-title-offset {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    transform: translateX(120px);
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

.card-offset-6 {
    transform: translateY(0);
}

.service-image-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

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

.service-info {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.service-info p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 12px 24px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.form-wrapper-offset {
    transform: translateX(-30px);
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.form-wrapper-offset h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.form-intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background-color: #e9ecef;
    color: #495057;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.why-choose-offset {
    padding: 100px 0;
    background-color: #fafbfc;
}

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

.why-text {
    flex: 1;
    transform: translateY(-20px);
}

.why-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.why-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 32px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 16px;
    color: #2c3e50;
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 18px;
}

.why-image {
    flex: 1;
    transform: translateX(40px);
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    background-color: #0f0f0f;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.thanks-container .cta-primary {
    margin-top: 30px;
}

.contact-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    transform: translateX(40px);
}

.contact-content h1 {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

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

.contact-info-item {
    background-color: #f8f9fa;
    padding: 28px;
    border-radius: 8px;
}

.contact-info-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.contact-info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.about-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-hero {
    max-width: 1000px;
    margin: 0 auto 60px;
    transform: translateX(-50px);
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.about-hero p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

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

.about-section {
    margin-bottom: 80px;
    transform: translateX(60px);
}

.about-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.services-page {
    padding: 80px 0;
    background-color: #fafbfc;
}

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

.services-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 16px;
}

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

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

    .hero-image-offset {
        transform: none;
    }

    .hero-text-block {
        transform: none;
    }

    .intro-left {
        transform: none;
    }

    .intro-right {
        transform: none;
    }

    .why-content-split {
        flex-direction: column;
    }

    .why-text {
        transform: none;
    }

    .why-image {
        transform: none;
    }

    .section-title-offset {
        transform: none;
    }

    .form-wrapper-offset {
        transform: none;
    }

    .contact-content {
        transform: none;
    }

    .about-hero {
        transform: none;
    }

    .about-section {
        transform: none;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .section-title-offset {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}