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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    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: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    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: 2px solid #ffffff;
}

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.main-header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

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

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    background: #f8f9fa;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 40px;
    max-width: 700px;
}

.hero-text-block {
    position: relative;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-subtext {
    font-size: 20px;
    color: #555555;
    margin-bottom: 32px;
    line-height: 1.5;
}

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

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

.hero-image-diagonal {
    position: absolute;
    right: -10%;
    top: 0;
    width: 55%;
    height: 100%;
    transform: skewX(-8deg);
    overflow: hidden;
    background: #dee2e6;
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skewX(8deg) scale(1.2);
}

.intro-overlap {
    max-width: 1400px;
    margin: -80px auto 80px;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.intro-card-left {
    flex: 1.5;
    background: #ffffff;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.intro-card-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-card-left p {
    font-size: 17px;
    color: #555555;
    line-height: 1.7;
}

.intro-stats-right {
    flex: 1;
    background: #2c3e50;
    padding: 50px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #ecf0f1;
    line-height: 1.4;
}

.problem-section {
    background: #ecf0f1;
    padding: 100px 40px;
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-image-small {
    flex: 0 0 380px;
    background: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.problem-text-wide {
    flex: 1;
}

.problem-text-wide h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.problem-text-wide p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444444;
    line-height: 1.7;
}

.services-stacked {
    padding: 100px 40px;
    background: #ffffff;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 19px;
    color: #666666;
}

.service-card-offset {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-offset:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.service-one {
    margin-left: 0;
}

.service-two {
    margin-left: 80px;
}

.service-three {
    margin-left: 40px;
}

.service-four {
    margin-left: 120px;
}

.service-five {
    margin-left: 20px;
}

.service-six {
    margin-left: 100px;
}

.service-visual {
    flex: 0 0 400px;
    background: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    height: 280px;
}

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

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #444444;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

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

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

.btn-service:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.trust-section {
    background: #2c3e50;
    padding: 100px 40px;
}

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

.trust-content-asymmetric h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 60px;
    text-align: center;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.trust-item h4 {
    font-size: 22px;
    color: #3498db;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    color: #ecf0f1;
    line-height: 1.6;
}

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

.form-container-diagonal {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.form-intro p {
    font-size: 17px;
    color: #666666;
}

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

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

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

.form-group input,
.form-group select {
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

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

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

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

.disclaimer-section {
    background: #f8f9fa;
    padding: 60px 40px;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-left: 4px solid #e74c3c;
    border-radius: 4px;
}

.disclaimer-content p {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
}

.main-footer {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

.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 {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
}

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

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

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

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

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

.thanks-service {
    display: inline-block;
    padding: 12px 24px;
    background: #ecf0f1;
    border-radius: 6px;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 0;
}

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

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

.about-hero {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    padding: 100px 40px;
    text-align: center;
    color: #ffffff;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

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

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-section p {
    font-size: 17px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-section ul {
    list-style: none;
    margin-top: 20px;
}

.about-section ul li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 16px;
    color: #444444;
}

.about-section ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.contact-hero {
    background: #2c3e50;
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
}

.contact-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

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

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

.contact-info-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-info-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-info-item p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
}

.legal-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

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

.legal-header h1 {
    font-size: 42px;
}

.legal-content {
    padding: 40px 0;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #2c3e50;
}

.legal-section p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-section ul li {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.services-page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 40px;
    text-align: center;
    color: #ffffff;
}

.services-page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-page-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.services-page-content {
    padding: 80px 40px;
}

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

    .hero-content-offset {
        max-width: 100%;
    }

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
        right: 0;
    }

    .hero-image-diagonal img {
        transform: none;
    }

    .intro-overlap {
        flex-direction: column;
        margin-top: 40px;
    }

    .service-card-offset {
        flex-direction: column;
        margin-left: 0 !important;
    }

    .service-visual {
        width: 100%;
        height: 300px;
    }

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

    .problem-image-small {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

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

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

    .form-container-diagonal {
        padding: 40px 30px;
    }
}