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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    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;
    height: 70px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
}

.hero-text-block {
    max-width: 580px;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-left: 5%;
}

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

.hero-text-block p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4a5568;
}

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

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

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 10%;
    width: 55%;
    height: 80%;
    z-index: 1;
}

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

.problem-section {
    padding: 100px 0;
    background: #ffffff;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.problem-stats {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 8px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.stat-card h3 {
    font-size: 52px;
    margin-bottom: 15px;
    font-weight: 800;
}

.stat-card p {
    font-size: 16px;
    line-height: 1.5;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a2332;
}

.problem-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-preview {
    padding: 120px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    margin-left: 8%;
    color: #1a2332;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 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 20px 50px rgba(0,0,0,0.12);
}

.card-large {
    flex: 0 0 calc(66.66% - 18px);
}

.card-medium {
    flex: 0 0 calc(50% - 13px);
}

.card-small {
    flex: 0 0 calc(33.33% - 18px);
}

.service-image {
    height: 280px;
    overflow: hidden;
    background: #e8ecf1;
}

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

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

.service-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a2332;
}

.service-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    flex: 1;
}

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

.select-service-btn {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.select-service-btn.selected {
    background: #27ae60;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.services-cta a {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    border: 2px solid #3498db;
    border-radius: 4px;
    transition: all 0.3s;
}

.services-cta a:hover {
    background: #3498db;
    color: #ffffff;
}

.trust-section {
    padding: 100px 0;
    background: #ffffff;
}

.container-wide {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.trust-layout {
    display: flex;
    gap: 100px;
    align-items: center;
}

.trust-image {
    flex: 0 0 500px;
    background: #e8ecf1;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: -30px 30px 0 #3498db;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a2332;
}

.trust-content p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #4a5568;
}

.trust-list {
    list-style: none;
    margin-bottom: 35px;
}

.trust-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #4a5568;
}

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

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.link-arrow:after {
    content: "→";
    margin-left: 10px;
    transition: margin-left 0.3s;
}

.link-arrow:hover:after {
    margin-left: 15px;
}

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

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.form-header h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.form-header p {
    font-size: 17px;
    opacity: 0.95;
}

.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e8ecf1;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.main-footer {
    background: #1a2332;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

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

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

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

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

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

.footer-column p {
    color: #b8c5d6;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: #b8c5d6;
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.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: rgba(255,255,255,0.1);
}

@media (max-width: 1024px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .problem-layout {
        flex-direction: column;
        gap: 40px;
    }

    .problem-stats {
        flex: 0 0 auto;
        width: 100%;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 0 0 100%;
    }

    .trust-layout {
        flex-direction: column;
        gap: 40px;
    }

    .trust-image {
        flex: 0 0 auto;
        width: 100%;
    }

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

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

@media (max-width: 768px) {
    .hero-text-block {
        padding: 40px;
    }

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

    .section-title-offset {
        font-size: 32px;
        margin-left: 0;
    }

    .problem-text h2 {
        font-size: 28px;
    }

    .form-header h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px;
    }
}

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

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

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

.content-section {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.content-text h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a2332;
}

.content-text h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.content-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

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

.content-text li {
    margin-bottom: 10px;
    font-size: 17px;
    color: #4a5568;
}

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

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

.contact-info p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #4a5568;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: #ffffff;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a2332;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #4a5568;
}

.selected-service-display {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 17px;
    color: #2c3e50;
}

.thanks-actions {
    margin-top: 40px;
}

.thanks-actions a {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    margin: 0 10px;
}

.thanks-actions a:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 45%;
    height: 400px;
    background: #e8ecf1;
}

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

.service-detail-content {
    flex: 1;
    padding: 40px;
}

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a2332;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin: 25px 0;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

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

@media (max-width: 768px) {
    .service-detail-card,
    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
    }
}