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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2980b9;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #ecf0f1;
    --background-white: #ffffff;
    --border-color: #dce1e3;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

.navbar {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background-color: var(--background-light);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--background-white);
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 4rem;
    background-color: var(--background-light);
}

.hero-left h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--background-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.features-split {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 3rem;
    align-items: center;
}

.feature-image {
    flex: 1;
    background-color: #a8c0d8;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.feature-content {
    flex: 1;
}

.feature-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-preview {
    background-color: var(--background-light);
    padding: 5rem 2rem;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(50% - 1rem);
    background-color: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.75rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    flex-grow: 1;
}

.service-card .price {
    padding: 1rem 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-select {
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--background-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.btn-select:hover {
    background-color: var(--primary-color);
}

.link-secondary {
    display: block;
    text-align: center;
    margin-top: 2rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.link-secondary:hover {
    text-decoration: underline;
}

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

.contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--background-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.selected-service-display {
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: var(--success-color);
    color: var(--background-white);
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.trust-split {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 3rem;
    align-items: center;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.trust-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.trust-image {
    flex: 1;
    background-color: #a8c0d8;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.footer {
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--background-white);
}

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

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

.footer-section a {
    color: var(--background-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--background-white);
}

.footer-section p {
    color: var(--background-light);
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.75rem;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.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 {
    color: var(--background-white);
    flex: 1;
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.875rem;
}

.btn-accept {
    background-color: var(--success-color);
    color: var(--background-white);
}

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

.btn-reject {
    background-color: var(--text-light);
    color: var(--background-white);
}

.btn-reject:hover {
    background-color: #5d6d7e;
}

.page-hero-split {
    display: flex;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 3rem;
    align-items: center;
}

.hero-content-left {
    flex: 1;
}

.hero-content-left h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content-left p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.hero-content-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.values-split {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 3rem;
    align-items: center;
}

.values-image {
    flex: 1;
    background-color: #a8c0d8;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.values-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.team-split {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 3rem;
    align-items: center;
    background-color: var(--background-light);
    padding: 3rem 2rem;
    border-radius: 8px;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.team-image {
    flex: 1;
    background-color: #a8c0d8;
}

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

.approach-split {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 3rem;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: #a8c0d8;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.approach-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--background-light);
    margin: 5rem 0;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-section p {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.services-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-header p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.services-list {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.service-item-split {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

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

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

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-details p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.price-tag {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.btn-select-service {
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--background-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
}

.contact-cta-split {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    gap: 3rem;
    background-color: var(--background-light);
    border-radius: 8px;
    align-items: center;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.cta-action {
    flex: 0 0 auto;
}

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

.contact-info-section {
    flex: 1;
}

.contact-info-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info-section > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    background-color: #b3c9dd;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.additional-info-split {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 3rem;
    align-items: center;
}

.info-content {
    flex: 1;
}

.info-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.info-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.info-image {
    flex: 1;
    background-color: #a8c0d8;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.thanks-page {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 3rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--success-color);
}

.thanks-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.thanks-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.thanks-visual {
    flex: 1;
    background-color: #b3c9dd;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .hero-split,
    .features-split,
    .contact-split,
    .trust-split,
    .page-hero-split,
    .values-split,
    .team-split,
    .approach-split,
    .service-item-split,
    .contact-page-split,
    .additional-info-split,
    .thanks-page,
    .contact-cta-split {
        flex-direction: column;
    }

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

    .hero-left h1,
    .hero-content-left h1,
    .thanks-content h1,
    .services-header h1,
    .legal-content h1 {
        font-size: 2rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}