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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.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: #4a90e2;
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 4px 12px;
    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 {
    background-color: #f8f9fa;
    padding: 80px 40px 60px;
}

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

.hero-text-block {
    flex: 1;
    padding-left: 80px;
}

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

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

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

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

.hero-image-block {
    flex: 0.8;
    margin-top: -40px;
}

.hero-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    object-fit: cover;
}

.intro-offset {
    padding: 100px 40px;
    background-color: #ffffff;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-left {
    flex: 0.7;
    margin-left: -60px;
    background-color: #ecf0f1;
}

.intro-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-right {
    flex: 1;
    padding-right: 40px;
}

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

.intro-right p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
}

.challenge-block {
    background-color: #34495e;
    color: white;
    padding: 80px 40px;
}

.challenge-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.challenge-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: rgba(255,255,255,0.05);
    border-left: 4px solid #3498db;
}

.challenge-item.offset-top {
    margin-top: 60px;
}

.challenge-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

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

.services-asymmetric {
    padding: 100px 40px;
    background-color: #fafafa;
}

.services-header-offset {
    max-width: 800px;
    margin: 0 auto 80px 120px;
}

.services-header-offset h2 {
    font-size: 44px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.services-intro {
    font-size: 20px;
    color: #666;
}

.services-staggered {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-card.right-align {
    margin-left: 120px;
    flex-direction: row-reverse;
}

.service-image {
    flex: 0.5;
    background-color: #e8e8e8;
}

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

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

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

.service-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-price {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 3px solid #3498db;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    font-weight: 600;
}

.price-value {
    font-size: 32px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.form-section-offset {
    padding: 100px 40px;
    background-color: #ecf0f1;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto 0 200px;
    background-color: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-intro-block {
    margin-bottom: 40px;
}

.form-intro-block h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.form-intro-block p {
    font-size: 18px;
    color: #666;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.trust-indicators {
    padding: 100px 40px;
    background-color: #ffffff;
}

.trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-wrapper h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
}

.testimonials-offset {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-card {
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    max-width: 800px;
}

.testimonial-card.offset-right {
    margin-left: auto;
    border-left: none;
    border-right: 4px solid #27ae60;
}

.testimonial-text {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.6;
}

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

.final-cta-asymmetric {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-content-offset {
    max-width: 800px;
    margin: 0 auto 0 200px;
    text-align: left;
}

.cta-content-offset h2 {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-content-offset p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-secondary {
    display: inline-block;
    background-color: white;
    color: #667eea;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.main-footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

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

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 20px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 4px;
    font-size: 13px;
    color: #ecf0f1;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #bdc3c7;
}

.about-hero {
    background-color: #ecf0f1;
    padding: 80px 40px;
}

.about-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.about-hero p {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

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

.about-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
}

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

.services-page-header {
    background-color: #2c3e50;
    color: white;
    padding: 80px 40px;
    text-align: center;
}

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

.services-list-section {
    padding: 80px 40px;
    background-color: #fafafa;
}

.contact-page-header {
    background-color: #3498db;
    color: white;
    padding: 80px 40px;
    text-align: center;
}

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

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

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

.contact-detail {
    margin-bottom: 32px;
}

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

.contact-detail p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.legal-page-header {
    background-color: #34495e;
    color: white;
    padding: 60px 40px;
}

.legal-page-header h1 {
    font-size: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.legal-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 16px;
}

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

.legal-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 40px;
    margin-bottom: 16px;
}

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.thanks-content a {
    display: inline-block;
    background-color: white;
    color: #667eea;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 1024px) {
    .hero-content-offset {
        flex-direction: column;
    }

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

    .intro-wrapper {
        flex-direction: column;
    }

    .intro-left {
        margin-left: 0;
    }

    .service-card {
        flex-direction: column !important;
    }

    .service-card.left-align,
    .service-card.right-align {
        margin-left: 0;
        margin-right: 0;
    }

    .form-container-asymmetric {
        margin: 0 auto;
    }

    .cta-content-offset {
        margin: 0 auto;
    }
}

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

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

    .cookie-content {
        flex-direction: column;
    }

    .challenge-grid {
        flex-direction: column;
    }

    .challenge-item.offset-top {
        margin-top: 0;
    }
}