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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #e85d3f;
    --accent-color: #f4a261;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

.ad-disclosure {
    background: #fef3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.nav-floating {
    position: fixed;
    top: 40px;
    right: 60px;
    background: var(--bg-white);
    padding: 20px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 120px;
}

.hero-content-offset {
    width: 55%;
    padding: 80px 80px 80px 120px;
    position: relative;
    z-index: 2;
}

.hero-text-block {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    transform: translateX(-40px);
}

.hero-title {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-image-overlap {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 85%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

.intro-offset {
    padding: 0 80px 100px;
    margin-bottom: 80px;
}

.intro-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-left {
    width: 40%;
    transform: translateY(-60px);
}

.intro-left img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background-color: var(--bg-light);
    object-fit: cover;
}

.intro-right {
    width: 60%;
    padding: 40px;
}

.intro-right h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.intro-right p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.benefits-stacked {
    background: var(--bg-light);
    padding: 100px 80px;
    margin-bottom: 100px;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}

.benefits-header {
    max-width: 600px;
    margin-bottom: 60px;
    transform: translateX(60px);
}

.benefits-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
}

.benefits-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 36px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.benefit-large {
    width: calc(60% - 12px);
}

.benefit-medium {
    width: calc(50% - 12px);
}

.benefit-small {
    width: calc(40% - 12px);
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.benefit-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.services-preview {
    padding: 0 80px 120px;
}

.services-header-diagonal {
    text-align: left;
    margin-bottom: 60px;
    transform: translateX(80px);
}

.services-header-diagonal h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
}

.services-header-diagonal p {
    font-size: 19px;
    color: var(--text-light);
}

.services-cards-offset {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-card {
    width: calc(33.333% - 27px);
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:nth-child(2) {
    transform: translateY(-40px);
}

.service-featured {
    border: 2px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 24px 16px;
    line-height: 1.6;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 24px;
}

.testimonials-inline {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4563 100%);
    padding: 100px 80px;
    margin-bottom: 100px;
    color: var(--bg-white);
}

.testimonials-wrapper h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 36px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

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

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.9;
}

.form-section {
    padding: 0 80px 120px;
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transform: translateX(-60px);
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: var(--bg-white);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.trust-section {
    background: var(--bg-light);
    padding: 80px 120px;
    margin-bottom: 100px;
}

.trust-content {
    max-width: 900px;
}

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 28px;
    font-weight: 700;
}

.trust-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #d44d2f;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 16px;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.footer-asymmetric {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 80px 80px 40px;
}

.footer-columns {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.7;
}

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

.footer-bottom p {
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.cookie-accept {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.cookie-accept:hover {
    background: #d44d2f;
}

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

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

.page-header-offset {
    padding: 160px 120px 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    margin-bottom: 80px;
}

.page-header-offset h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-subtitle {
    font-size: 22px;
    color: var(--text-light);
}

.services-detailed {
    padding: 0 80px 100px;
}

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

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

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

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

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin: 32px 0;
}

.service-features li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 32px 0;
}

.service-detail-image {
    width: 45%;
    flex-shrink: 0;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background-color: var(--bg-light);
    object-fit: cover;
}

.pricing-comparison {
    background: var(--bg-light);
    padding: 80px;
    margin-bottom: 80px;
    border-radius: 12px;
}

.pricing-comparison h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 700;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-row {
    display: flex;
    background: var(--bg-white);
    margin-bottom: 8px;
    border-radius: 6px;
    overflow: hidden;
}

.comparison-header {
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 20px 24px;
    font-size: 16px;
}

.about-intro-split {
    display: flex;
    gap: 80px;
    padding: 0 80px 100px;
    align-items: flex-start;
}

.about-text-primary {
    flex: 1.2;
}

.about-text-primary h2 {
    font-size: 40px;
    margin-bottom: 28px;
    font-weight: 700;
}

.about-text-primary p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-image-offset {
    flex: 1;
    transform: translateY(40px);
}

.about-image-offset img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background-color: var(--bg-light);
    object-fit: cover;
}

.approach-section {
    background: var(--bg-light);
    padding: 100px 80px;
    margin-bottom: 100px;
}

.approach-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.approach-block {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.approach-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.approach-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 0 120px 100px;
    text-align: center;
}

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

.team-intro {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.team-description p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.values-offset {
    padding: 0 80px 100px;
}

.values-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.value-image {
    width: 45%;
    transform: translateY(-40px);
}

.value-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background-color: var(--bg-light);
    object-fit: cover;
}

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 40px;
    margin-bottom: 32px;
    font-weight: 700;
}

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

.values-list li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.history-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4563 100%);
    color: var(--bg-white);
    padding: 100px 120px;
    margin-bottom: 100px;
}

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

.history-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
    opacity: 0.95;
}

.cta-about {
    text-align: center;
    padding: 100px 80px;
}

.cta-about h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-about p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 36px;
}

.contact-layout {
    padding: 0 120px 100px;
}

.contact-info-block {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.additional-info {
    padding: 100px 80px;
    background: var(--bg-white);
}

.additional-info h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.info-block {
    flex: 1;
    background: var(--bg-light);
    padding: 36px;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    min-height: 60vh;
    padding: 160px 80px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 48px;
}

.thanks-service-info {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 48px;
    font-size: 18px;
    color: var(--text-dark);
}

.thanks-next-steps {
    text-align: left;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-next-steps ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next-steps li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
}

.thanks-next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-page {
    padding: 160px 120px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.legal-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 32px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .nav-floating {
        right: 20px;
        top: 20px;
        padding: 16px 24px;
    }

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

    .hero-image-overlap {
        display: none;
    }

    .benefits-grid-asymmetric {
        flex-direction: column;
    }

    .benefit-large,
    .benefit-medium,
    .benefit-small {
        width: 100%;
    }

    .services-cards-offset {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .service-card:nth-child(2) {
        transform: translateY(0);
    }

    .testimonial-blocks {
        flex-direction: column;
    }

    .intro-wrapper,
    .approach-blocks,
    .values-wrapper,
    .about-intro-split,
    .service-detail-block {
        flex-direction: column;
    }

    .intro-left,
    .value-image,
    .service-detail-image {
        width: 100%;
        transform: translateY(0);
    }

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

    .info-blocks {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        position: static;
        border-radius: 0;
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

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

    .page-header-offset h1 {
        font-size: 36px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}