* {
    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: #1a1a1a;
    background: #ffffff;
}

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

.cookie-banner.show {
    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-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

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

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

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

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

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

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

.nav-links a:hover {
    color: #2980b9;
}

.ad-label {
    position: absolute;
    top: 8px;
    right: 60px;
    font-size: 11px;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 4px 10px;
    border-radius: 3px;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 80px 60px 80px 100px;
    gap: 80px;
}

.hero-content-left {
    flex: 1;
    max-width: 560px;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content-left p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-inline {
    display: inline-block;
    padding: 16px 36px;
    background: #2980b9;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #21618c;
    transform: translateY(-2px);
}

.hero-image-right {
    flex: 1;
    position: relative;
}

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

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

.intro-block {
    flex: 1.2;
}

.intro-block h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.intro-visual {
    flex: 0.8;
}

.intro-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #e0e7ee;
}

.problem-amplification {
    padding: 80px 200px 80px 100px;
    background: #34495e;
    color: #ffffff;
}

.problem-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
}

.problem-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.services-staggered {
    padding: 120px 60px;
    background: #ffffff;
}

.services-staggered h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.service-card-offset-left,
.service-card-offset-right {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e8ecef;
}

.service-info {
    flex: 1;
}

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

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

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

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

.btn-select:hover {
    background: #21618c;
    transform: translateY(-2px);
}

.trust-block-centered {
    padding: 80px 200px;
    text-align: center;
    background: #ecf0f1;
}

.trust-block-centered h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.trust-block-centered p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    padding: 80px 60px;
    background: #ffffff;
}

.testimonial-card {
    flex: 1;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
}

.form-section-offset {
    display: flex;
    gap: 80px;
    padding: 100px 60px 100px 140px;
    background: #2c3e50;
    color: #ffffff;
}

.form-container {
    flex: 1;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.service-display {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-display p {
    margin: 0;
    font-size: 16px;
}

.service-display.selected {
    background: rgba(46, 204, 113, 0.2);
    border-color: #2ecc71;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 4px;
    font-size: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
    padding: 16px 40px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.form-visual {
    flex: 0.8;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background-color: #34495e;
}

.disclaimer-section {
    padding: 60px 200px;
    background: #ecf0f1;
    text-align: center;
}

.disclaimer-section p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.7;
}

.footer-asymmetric {
    background: #1a252f;
    color: #ffffff;
    padding: 60px 100px 40px 60px;
}

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

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #bdc3c7;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #ecf0f1;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

@media (max-width: 968px) {
    .nav-asymmetric {
        padding: 20px 30px;
        flex-wrap: wrap;
    }

    .nav-links {
        gap: 20px;
    }

    .ad-label {
        position: static;
        margin-top: 10px;
    }

    .hero-offset {
        flex-direction: column;
        padding: 60px 30px;
    }

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

    .intro-diagonal {
        flex-direction: column;
        padding: 60px 30px;
    }

    .problem-amplification {
        padding: 60px 30px;
    }

    .services-staggered {
        padding: 80px 30px;
    }

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

    .testimonials-grid {
        flex-direction: column;
        padding: 60px 30px;
    }

    .form-section-offset {
        flex-direction: column;
        padding: 60px 30px;
    }

    .disclaimer-section {
        padding: 40px 30px;
    }

    .footer-asymmetric {
        padding: 40px 30px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

.page-header {
    padding: 80px 60px 60px;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.content-section {
    padding: 80px 200px;
    background: #ffffff;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-section h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #34495e;
}

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

.content-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.contact-info {
    background: #ecf0f1;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
}

.contact-info .email-text {
    color: #2980b9;
    font-weight: 600;
}