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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.ad-notice {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 60px 80px;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content-offset {
    width: 45%;
    padding-right: 60px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #2c3e50;
}

.hero-content-offset p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 38px;
    color: #546e7a;
}

.cta-primary {
    display: inline-block;
    padding: 18px 42px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.hero-image-stack {
    position: absolute;
    right: 60px;
    top: 180px;
    width: 48%;
    height: 600px;
    background: #e8f4f8;
}

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

.intro-offset {
    padding: 120px 60px;
    background: #ffffff;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.intro-image-diagonal {
    flex: 1;
    position: relative;
    background: #f0f4f8;
}

.intro-image-diagonal img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transform: rotate(-2deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.services-asymmetric {
    padding: 100px 60px 120px;
    background: #f8f9fa;
}

.section-header-tilted {
    max-width: 600px;
    margin-bottom: 70px;
    margin-left: 40px;
}

.section-header-tilted h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-tilted p {
    font-size: 20px;
    color: #546e7a;
}

.services-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-left,
.service-card-right,
.service-card-center {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.service-card-left {
    margin-right: 120px;
}

.service-card-right {
    margin-left: 120px;
    flex-direction: row-reverse;
}

.service-card-center {
    max-width: 900px;
    margin: 0 auto;
}

.service-card-left img,
.service-card-right img,
.service-card-center img {
    width: 350px;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #e8f4f8;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #546e7a;
}

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

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

.service-select-btn:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

.trust-block-diagonal {
    padding: 100px 60px;
    background: linear-gradient(125deg, #2c3e50 0%, #34495e 100%);
    transform: skewY(-2deg);
    margin: 80px 0;
}

.trust-content {
    transform: skewY(2deg);
    max-width: 1200px;
    margin: 0 auto;
    color: #ffffff;
}

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

.trust-stats {
    display: flex;
    justify-content: space-around;
    gap: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    line-height: 1.5;
}

.form-section-offset {
    padding: 120px 60px;
    background: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-container > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #546e7a;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.3s;
}

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

.form-submit-btn {
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 12px;
}

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

.footer-asymmetric {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 80px 60px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 16px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    max-width: 900px;
    margin: 20px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 30px 60px;
    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: 16px;
    line-height: 1.6;
    color: #2c3e50;
}

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

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

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

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

.cookie-btn-reject {
    background: #ecf0f1;
    color: #2c3e50;
}

.cookie-btn-reject:hover {
    background: #bdc3c7;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 60px 80px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-container p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #546e7a;
    max-width: 700px;
}

.thanks-service {
    font-size: 22px;
    font-weight: 700;
    color: #3498db;
    margin: 30px 0;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 60px 80px;
}

.contact-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 28px;
}

.info-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.info-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
}

.about-hero {
    padding: 140px 60px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 28px;
    color: #2c3e50;
    max-width: 800px;
}

.about-hero p {
    font-size: 22px;
    line-height: 1.7;
    color: #546e7a;
    max-width: 750px;
}

.about-section {
    padding: 100px 60px;
}

.about-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #2c3e50;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
    max-width: 900px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 60px 80px;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

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

.legal-page li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #546e7a;
}

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

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-stack {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
    }

    .service-card-left,
    .service-card-right {
        margin-left: 0;
        margin-right: 0;
        flex-direction: column;
    }

    .service-card-left img,
    .service-card-right img,
    .service-card-center img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 16px 20px;
    }

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

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

    .trust-stats {
        flex-direction: column;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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