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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 3px;
    border: 1px solid #e8e8e8;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: #ffffff;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-text-block p {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image-block {
    flex: 1;
    background-color: #dfe4ea;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.intro-offset {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    background-color: #ffffff;
}

.intro-content {
    flex: 1.5;
    padding-right: 3rem;
}

.intro-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-content p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
}

.stat-label {
    font-size: 1rem;
    color: #5a6c7d;
    margin-top: 0.5rem;
}

.services-preview-asymmetric {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.services-header-left {
    max-width: 700px;
    margin-bottom: 3rem;
}

.services-header-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.services-header-left p {
    font-size: 1.125rem;
    color: #5a6c7d;
}

.services-cards-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.25rem;
    color: #1a252f;
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    padding: 1rem 1.5rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #3498db;
}

.cta-inline {
    padding: 3rem 5%;
    background-color: #2c3e50;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-inline p {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
}

.cta-inline .cta-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.cta-inline .cta-secondary:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.process-split {
    display: flex;
    background-color: #ffffff;
}

.process-visual {
    flex: 1;
    background-color: #dfe4ea;
    overflow: hidden;
}

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

.process-steps {
    flex: 1;
    padding: 5rem 5%;
}

.process-steps h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    min-width: 50px;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.step-content p {
    color: #5a6c7d;
    line-height: 1.7;
}

.testimonials-stacked {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.testimonials-stacked h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-text {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 600;
}

.form-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.form-container-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.form-intro p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.form-wrapper {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #dfe4ea;
    border-radius: 4px;
    font-size: 1rem;
    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;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.footer-modern {
    background-color: #1a252f;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    color: #b0b8c1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

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

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

.footer-disclaimer {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #b0b8c1;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #b0b8c1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: #3498db;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #2980b9;
}

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

.btn-cookie-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.about-hero-split {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
}

.about-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: #ffffff;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.about-hero-content p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
    max-width: 500px;
}

.about-hero-image {
    flex: 1;
    background-color: #dfe4ea;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.story-content p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-asymmetric {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.values-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a252f;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.value-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.team-split {
    display: flex;
    background-color: #ffffff;
}

.team-text {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.team-text p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-image {
    flex: 1;
    background-color: #dfe4ea;
    overflow: hidden;
}

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

.services-hero {
    padding: 5rem 5%;
    text-align: center;
    background-color: #f8f9fa;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.services-hero p {
    font-size: 1.25rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    min-height: 500px;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #dfe4ea;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.service-detail-content p {
    font-size: 1.0625rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #5a6c7d;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f8f9fa;
}

.price-label {
    font-size: 1rem;
    color: #7f8c8d;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3498db;
}

.services-cta {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.services-cta p {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 4rem 5%;
    text-align: center;
    background-color: #f8f9fa;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
}

.contact-block {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-block h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #3498db;
    font-weight: 700;
}

.contact-detail p {
    font-size: 1.0625rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background-color: #dfe4ea;
    overflow: hidden;
}

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

.contact-additional {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.contact-additional h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1a252f;
    text-align: center;
}

.contact-options {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-option {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.contact-option h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.contact-option p {
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-hero {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.thanks-content > p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    border-left: 4px solid #3498db;
}

.thanks-details p {
    font-size: 1.0625rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 2.5rem;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps ol li {
    font-size: 1.0625rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-content {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.legal-content > p:first-of-type {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.0625rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    font-size: 1.0625rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .hero-split,
    .about-hero-split,
    .process-split,
    .team-split,
    .contact-info-split,
    .service-detail-item {
        flex-direction: column;
    }

    .hero-text-block h1,
    .about-hero-content h1,
    .services-hero h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .intro-offset,
    .form-container-split {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-item,
    .value-item,
    .contact-option {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-reject {
        width: 100%;
    }
}