* {
    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-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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;
    min-width: 300px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

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

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

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

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

.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.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: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-left p {
    font-size: 20px;
    color: #5d6d7e;
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    background-color: #ecf0f1;
}

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

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

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

.value-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.value-split.reverse {
    flex-direction: row-reverse;
    background-color: #ffffff;
}

.split-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.split-content {
    flex: 1;
}

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

.split-content p {
    font-size: 18px;
    color: #5d6d7e;
    margin-bottom: 20px;
}

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

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 20px;
    color: #7f8c8d;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-large {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-image-wrapper {
    flex: 1;
    background-color: #ecf0f1;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 300px;
}

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

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

.service-info p {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 24px;
}

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

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

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

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    background-color: #ecf0f1;
}

.form-left {
    flex: 1;
}

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

.form-left p {
    font-size: 18px;
    color: #5d6d7e;
    margin-bottom: 16px;
}

.selected-service-display,
.selected-price-display {
    font-size: 16px;
    color: #2c3e50;
}

.selected-service-display strong,
.selected-price-display strong {
    color: #3498db;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

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

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

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

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

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

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    min-width: 60px;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-text p {
    font-size: 16px;
    color: #5d6d7e;
}

.testimonials-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.testimonials-full h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials-split-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    max-width: 500px;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #5d6d7e;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: #2c3e50;
    font-size: 16px;
}

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

.final-cta-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
    background-color: #2c3e50;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-left p {
    font-size: 20px;
    color: #bdc3c7;
}

.cta-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

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

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

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

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

@media (max-width: 968px) {
    .hero-split,
    .value-split,
    .form-section-split,
    .process-split,
    .final-cta-split {
        flex-direction: column;
    }

    .value-split.reverse,
    .process-split.reverse,
    .service-card-large.reverse {
        flex-direction: column;
    }

    .testimonials-split-grid {
        flex-direction: column;
    }

    .header-container {
        flex-direction: column;
        gap: 16px;
    }

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

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

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