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

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

.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;
    min-width: 280px;
    margin: 0;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

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

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

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

.btn-cookie.reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    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;
}

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

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

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

.ad-disclosure {
    font-size: 13px;
    color: #7f8c8d;
    font-style: italic;
}

.hero-split {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

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

.hero-text {
    flex: 1;
    min-width: 300px;
}

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

.hero-text p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    background: #cbd5e0;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.approach-split {
    padding: 100px 0;
}

.approach-split.reverse {
    background: #ffffff;
}

.approach-split,
.process-split,
.cta-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 80px;
    align-items: center;
}

.approach-split.reverse {
    flex-direction: row;
}

.approach-image,
.process-visual {
    flex: 1;
    min-width: 300px;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.approach-image img,
.process-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.approach-text,
.process-text {
    flex: 1;
    min-width: 300px;
}

.approach-text h2,
.process-text h2,
.services-intro h2,
.cta-content h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #1a1a1a;
    line-height: 1.3;
}

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

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

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro p {
    font-size: 19px;
    color: #4a5568;
}

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

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

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

.service-icon {
    flex: 1;
    min-width: 300px;
    background: #cbd5e0;
}

.service-icon img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.cta-split {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-content h2 {
    color: #ffffff;
}

.cta-content p {
    font-size: 18px;
    color: #ecf0f1;
}

.cta-form-container {
    flex: 1;
    min-width: 300px;
}

.inline-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.inline-form input,
.inline-form select,
.inline-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.inline-form textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: #27ae60;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

.footer-section p {
    color: #b0b0b0;
    line-height: 1.7;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px 0;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

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

.content-section h1 {
    font-size: 48px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.content-section h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-section h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.content-section ul,
.content-section ol {
    padding-left: 32px;
}

.content-section li {
    margin-bottom: 12px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thanks-box {
    max-width: 600px;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

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

.thanks-box .btn-primary {
    margin-top: 32px;
}

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

.contact-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-form-section {
    flex: 1;
    min-width: 300px;
}

.contact-info-section {
    flex: 1;
    min-width: 300px;
}

.contact-form-section h1,
.contact-info-section h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

.info-block {
    margin-bottom: 36px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-content,
    .approach-split,
    .process-split,
    .cta-split,
    .contact-split {
        flex-direction: column;
    }

    .approach-split.reverse {
        flex-direction: column;
    }

    .service-card,
    .service-card.reverse-card {
        flex-direction: column;
    }

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

    .main-nav {
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .header-container {
        padding: 0 20px;
    }

    .content-section,
    .contact-container {
        padding: 60px 20px;
    }

    .main-nav {
        flex-direction: column;
        gap: 12px;
    }

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