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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #2c3e50;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 80vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
    background-color: #ecf0f1;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

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

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

.intro-content {
    flex: 1.2;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
}

.intro-visual {
    flex: 0.8;
}

.intro-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.trust-cards {
    display: flex;
    gap: 2rem;
    padding: 4rem 8%;
    background-color: #34495e;
    justify-content: space-between;
}

.trust-card {
    flex: 1;
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.trust-card p {
    color: #555;
    line-height: 1.7;
}

.story-dual {
    display: flex;
    min-height: 70vh;
}

.story-image {
    flex: 1;
    overflow: hidden;
}

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

.story-text {
    flex: 1;
    padding: 5rem 6%;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.services-showcase {
    padding: 5rem 8%;
    background-color: #fff;
}

.services-showcase h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.service-item {
    flex: 0 1 calc(33.333% - 1.5rem);
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #2c3e50;
}

.service-item p {
    padding: 0 1.5rem 1rem;
    color: #555;
    line-height: 1.6;
}

.service-item .price {
    display: block;
    padding: 1rem 1.5rem 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    font-size: 1.1rem;
}

.testimonial-split {
    display: flex;
    min-height: 50vh;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-left {
    background-color: #3498db;
}

.testimonial-right {
    background-color: #2c3e50;
}

blockquote {
    color: #fff;
}

blockquote p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

blockquote cite {
    display: block;
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.process-visual {
    padding: 5rem 8%;
    background-color: #ecf0f1;
}

.process-visual h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step p {
    color: #555;
    line-height: 1.6;
}

.cta-section {
    display: flex;
    padding: 5rem 8%;
    background-color: #fff;
    gap: 4rem;
    align-items: flex-start;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.cta-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-cta {
    text-align: center;
    padding: 5rem 8%;
    background-color: #2c3e50;
    color: #fff;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.footer {
    background-color: #1a252f;
    color: #fff;
    padding: 3rem 8% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 1.5rem 5%;
    display: none;
    z-index: 2000;
}

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

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

.cookie-content p {
    color: #fff;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    opacity: 0.8;
}

@media (max-width: 968px) {
    .hero-split,
    .story-dual,
    .testimonial-split {
        flex-direction: column;
    }

    .intro-offset,
    .cta-section {
        flex-direction: column;
    }

    .service-item {
        flex: 0 1 calc(50% - 1rem);
    }

    .process-steps {
        flex-wrap: wrap;
    }

    .step {
        flex: 0 1 calc(50% - 1rem);
    }

    .trust-cards {
        flex-direction: column;
    }

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

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

    .nav-right {
        gap: 1rem;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .service-item {
        flex: 0 1 100%;
    }

    .step {
        flex: 0 1 100%;
    }

    .nav-right {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }
}
