* {
    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-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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: 20px;
}

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

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

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

.btn-accept {
    background: #27ae60;
    color: white;
}

.btn-accept:hover {
    background: #229954;
}

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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px 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 {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin-left: 80px;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a252f;
}

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

.hero-visual-block {
    flex: 1;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    background: #ecf0f1;
}

.hero-visual-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

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

.intro-offset {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
    background: #f8f9fa;
}

.intro-text-narrow {
    flex: 1.2;
    padding-right: 40px;
}

.intro-text-narrow h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #1a252f;
}

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

.intro-image-right {
    flex: 0.8;
    background: #e9ecef;
}

.intro-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.services-asymmetric {
    padding: 120px 60px;
}

.section-header-offset {
    max-width: 650px;
    margin-bottom: 70px;
    margin-left: 120px;
}

.section-header-offset h2 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a252f;
}

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

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: calc(50% - 20px);
}

.service-card.large-card {
    width: 100%;
    display: flex;
}

.service-card.large-card .service-visual {
    flex: 1;
}

.service-card.large-card .service-info {
    flex: 1;
}

.service-card.wide-card {
    width: 100%;
}

.service-card.offset-card {
    margin-top: 60px;
}

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

.service-visual {
    background: #ecf0f1;
    height: 280px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    padding: 35px;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a252f;
}

.service-info p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

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

.btn-select-service:hover {
    background: #34495e;
}

.form-section-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.form-container-offset {
    flex: 1.3;
    padding-right: 40px;
}

.form-container-offset h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.form-container-offset > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.registration-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    transition: all 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.form-visual-element {
    flex: 0.7;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.form-visual-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-offset {
    padding: 100px 60px;
    background: #f8f9fa;
}

.why-content h2 {
    font-size: 46px;
    margin-bottom: 60px;
    color: #1a252f;
    text-align: center;
}

.benefits-irregular {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.benefit-item.offset-benefit {
    margin-top: 50px;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.disclaimer-section {
    padding: 60px;
    background: #fff9e6;
    border-left: 4px solid #f39c12;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #546e7a;
}

.main-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 60px 30px;
}

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

.footer-column {
    flex: 1;
}

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

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

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

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

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-content .selected-service {
    font-weight: 600;
    color: #2c3e50;
}

.thanks-content .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content .btn-home:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.page-container {
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-container h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a252f;
}

.page-container h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-container h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #34495e;
}

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

.page-container ul,
.page-container ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-container li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #546e7a;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.contact-info h2 {
    margin-top: 0;
}

.contact-info-item {
    margin-bottom: 24px;
}

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

.contact-info-item p {
    margin: 0;
    color: #546e7a;
}

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

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
        padding: 60px 40px;
    }

    .hero-visual-block {
        clip-path: none;
        min-height: 400px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 40px;
    }

    .service-card,
    .service-card.large-card,
    .service-card.wide-card {
        width: 100%;
    }

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

    .form-section-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
    }

    .benefits-irregular {
        flex-direction: column;
    }

    .benefit-item.offset-benefit {
        margin-top: 0;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .section-header-offset {
        margin-left: 0;
    }

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