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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.navbar {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-disclosure {
    color: #95a5a6;
    font-size: 0.75rem;
    font-style: italic;
    padding-left: 1.5rem;
    border-left: 1px solid #444;
}

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

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

.hero-text-side h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.hero-image-side {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #34495e;
}

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

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

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

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

.intro-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.intro-text-side p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.intro-image-side {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #bdc3c7;
}

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

.services-grid {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-header-centered h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.service-card-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-image {
    flex: 1;
    position: relative;
    background-color: #95a5a6;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 2rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

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

.btn-select {
    padding: 0.9rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #34495e;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.form-section.hidden {
    display: none;
}

.form-container-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-info-side {
    flex: 1;
    padding: 3rem;
    background-color: #34495e;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-info-side p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.selected-service-display {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3498db;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 0.5rem;
}

.form-input-side {
    flex: 1;
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.trust-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-text-side h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.testimonial-block {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.testimonial-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    font-style: italic;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: 600;
    color: #2c3e50;
    font-style: normal;
}

.trust-image-side {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #bdc3c7;
}

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

.footer {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-column p {
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.btn-cookie-alt {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-cookie-alt:hover {
    background-color: #6c7a7a;
}

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.content-page {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.content-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.content-page h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.content-page h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.content-page p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.content-page ul,
.content-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-page li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 3rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.contact-info {
    flex: 1;
}

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

.contact-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.contact-map {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-container-split,
    .trust-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-text-side h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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