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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept, .btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.nav-asymmetric {
    background: #1a252f;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

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

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

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

.ad-label {
    color: #95a5a6;
    font-size: 13px;
    font-style: italic;
    padding-left: 20px;
    border-left: 1px solid #34495e;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
}

.hero-content-left {
    flex: 1;
    padding-left: 40px;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #34495e;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #2980b9;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

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

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -60px;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #bdc3c7;
}

.intro-asymmetric {
    background: #ecf0f1;
    padding: 100px 40px;
    position: relative;
}

.intro-block-floating {
    max-width: 700px;
    margin-left: 15%;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: -80px;
    position: relative;
    z-index: 10;
}

.intro-block-floating h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

.intro-stats {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding-right: 10%;
}

.stat-card {
    background: #2c3e50;
    color: white;
    padding: 40px 50px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
}

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

.stat-label {
    font-size: 15px;
    line-height: 1.4;
}

.problem-section {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.problem-overlap {
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.problem-text h3 {
    font-size: 36px;
    margin-bottom: 35px;
    color: #1a252f;
    line-height: 1.3;
}

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

.problem-list li {
    padding: 20px 0;
    border-bottom: 1px solid #ecf0f1;
    font-size: 18px;
    color: #34495e;
    position: relative;
    padding-left: 35px;
}

.problem-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 22px;
}

.problem-image {
    flex: 1;
    margin-left: -60px;
}

.problem-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #bdc3c7;
}

.services-creative {
    background: #f8f9fa;
    padding: 100px 40px 120px;
}

.services-title-offset {
    font-size: 48px;
    margin-bottom: 70px;
    margin-left: 8%;
    color: #1a252f;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex: 0 1 calc(50% - 15px);
    min-width: 400px;
}

.card-offset {
    flex: 0 1 calc(50% - 15px);
    min-width: 400px;
    margin-top: 40px;
}

.card-small {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
}

.card-medium {
    flex: 0 1 calc(40% - 15px);
    min-width: 350px;
    margin-top: -30px;
}

.card-elevated {
    flex: 0 1 calc(60% - 15px);
    min-width: 400px;
}

.service-image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #95a5a6;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 30px 15px;
    color: #1a252f;
}

.service-card p {
    margin: 0 30px 20px;
    color: #34495e;
    font-size: 16px;
    line-height: 1.6;
    flex: 1;
}

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

.btn-select-service {
    margin: 0 30px 30px;
    padding: 15px 30px;
    background: #2980b9;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.form-section-asymmetric {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.form-container-offset {
    max-width: 600px;
    margin-left: 10%;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a252f;
}

.form-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.form-subtitle strong {
    color: #2980b9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

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

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

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

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

.form-image-overlap {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    z-index: 5;
}

.form-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    background-color: #95a5a6;
}

.trust-section {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-content-scattered {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
}

.trust-block {
    flex: 0 1 calc(50% - 30px);
    min-width: 300px;
}

.trust-block:first-child {
    margin-top: 80px;
}

.trust-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.trust-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

.trust-testimonial {
    flex: 0 1 100%;
    background: #ecf0f1;
    padding: 50px 60px;
    border-radius: 12px;
    margin-left: 10%;
    margin-right: -5%;
}

.trust-testimonial blockquote {
    font-size: 22px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    border-left: none;
}

.trust-testimonial cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

.benefits-overlap {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.benefits-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    background-color: #2c3e50;
}

.benefits-text-overlay {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin-left: auto;
    margin-right: 10%;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.benefits-text-overlay h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a252f;
}

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

.benefits-list li {
    padding: 15px 0;
    font-size: 18px;
    color: #34495e;
    position: relative;
    padding-left: 35px;
}

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

.footer-asymmetric {
    background: #1a252f;
    color: #ecf0f1;
    padding: 80px 40px 40px;
}

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

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

.footer-col-main {
    flex: 1.5;
}

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

.footer-col p {
    color: #95a5a6;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    color: #7f8c8d;
    font-size: 14px;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.contact-info-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
}

.page-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.page-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 20px;
    color: #34495e;
}

.page-content p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
}

.page-content ul,
.page-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #34495e;
}

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

.about-hero-content {
    flex: 1;
}

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

.about-hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #34495e;
}

.about-hero-image {
    flex: 1;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #bdc3c7;
}

.about-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a252f;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.services-list-page {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-list-page h1 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a252f;
}

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

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

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

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 30px;
}

.thanks-content .cta-primary {
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .hero-offset {
        flex-direction: column;
        padding: 60px 30px;
    }

    .hero-content-left {
        padding-left: 0;
    }

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

    .hero-image-right {
        margin-top: 20px;
    }

    .problem-overlap {
        flex-direction: column;
    }

    .problem-image {
        margin-left: 0;
    }

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

    .form-container-offset {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .services-grid-irregular {
        flex-direction: column;
    }

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

    .intro-block-floating {
        margin-left: 0;
        padding: 40px;
    }

    .intro-stats {
        flex-direction: column;
        padding-right: 0;
    }

    .footer-columns {
        flex-direction: column;
    }
}