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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7f;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #2c5f7f;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f5f8fa;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c5f7f;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 35px;
    max-width: 500px;
}

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

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

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #2c5f7f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1e4a63;
}

.intro-section,
.benefits-section,
.approach-section {
    padding: 80px 30px;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-image-left,
.split-image-right {
    flex: 1;
    background-color: #e8f1f7;
    overflow: hidden;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-text-left,
.split-text-right {
    flex: 1;
}

.split-text-left h2,
.split-text-right h2 {
    font-size: 36px;
    color: #2c5f7f;
    margin-bottom: 25px;
}

.split-text-left p,
.split-text-right p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    margin: 25px 0;
}

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #5a6c7d;
    font-size: 17px;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f7f;
    font-weight: 700;
}

.services-preview {
    padding: 80px 30px;
    background-color: #f5f8fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    color: #2c5f7f;
    margin-bottom: 50px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 24px;
    color: #2c5f7f;
    margin: 25px 25px 15px;
}

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin: 0 25px 20px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f7f;
    margin: 0 25px 20px;
}

.select-service {
    margin: 0 25px 25px;
    padding: 12px 25px;
    background-color: #2c5f7f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1e4a63;
}

.testimonials-section {
    padding: 80px 30px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    color: #2c5f7f;
    margin-bottom: 50px;
}

.testimonials-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.testimonial-item {
    flex: 1;
    padding: 35px;
    background-color: #f5f8fa;
    border-radius: 8px;
    border-left: 4px solid #2c5f7f;
}

.testimonial-item p {
    font-size: 17px;
    color: #5a6c7d;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f7f;
}

.form-section {
    padding: 80px 30px;
    background-color: #f5f8fa;
}

.form-container-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    color: #2c5f7f;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.selected-service-display {
    padding: 20px;
    background-color: #e8f1f7;
    border-radius: 6px;
    margin-top: 20px;
}

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #2c5f7f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1e4a63;
}

.disclaimer-section {
    padding: 40px 30px;
    background-color: #fef9f3;
    border-top: 2px solid #f4e4d0;
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    color: #7a6c5d;
    text-align: center;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.footer-column p {
    color: #bdc3c7;
    font-size: 15px;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    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: 30px;
}

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

.cookie-content a {
    color: #5dade2;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #2c5f7f;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1e4a63;
}

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

.cookie-reject:hover {
    background-color: #5a6c7d;
}

.page-header {
    padding: 80px 30px 60px;
    background-color: #f5f8fa;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #2c5f7f;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.about-content,
.philosophy-section {
    padding: 80px 30px;
}

.values-section {
    padding: 80px 30px;
    background-color: #f5f8fa;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    color: #2c5f7f;
    margin-bottom: 50px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 22px;
    color: #2c5f7f;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    color: #5a6c7d;
}

.cta-simple {
    padding: 80px 30px;
    text-align: center;
}

.cta-simple h2 {
    font-size: 38px;
    color: #2c5f7f;
    margin-bottom: 20px;
}

.cta-simple p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.services-detailed {
    padding: 60px 30px;
}

.service-detail-split {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #2c5f7f;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #5a6c7d;
    font-size: 16px;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #2c5f7f;
    font-size: 20px;
}

.service-price-block {
    margin: 30px 0;
    padding: 20px;
    background-color: #f5f8fa;
    border-radius: 8px;
}

.price-label {
    font-size: 14px;
    color: #7a6c5d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f7f;
}

.service-cta {
    margin-top: 20px;
}

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

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

.service-comparison {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
    text-align: center;
}

.service-comparison h2 {
    font-size: 32px;
    color: #2c5f7f;
    margin-bottom: 25px;
}

.comparison-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.contact-content {
    padding: 60px 30px;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    color: #2c5f7f;
    margin-bottom: 35px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 18px;
    color: #2c5f7f;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f5f8fa;
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    color: #5a6c7d;
}

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

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

.faq-section {
    padding: 80px 30px;
    background-color: #f5f8fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    color: #2c5f7f;
    margin-bottom: 50px;
}

.faq-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    color: #2c5f7f;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-page {
    min-height: 500px;
    padding: 80px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2c5f7f;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #2c5f7f;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.service-confirmation {
    padding: 20px;
    background-color: #f5f8fa;
    border-radius: 6px;
    margin-bottom: 30px;
}

.thanks-next {
    margin: 40px 0;
    padding: 30px;
    background-color: #f5f8fa;
    border-radius: 8px;
}

.thanks-next h3 {
    font-size: 22px;
    color: #2c5f7f;
    margin-bottom: 15px;
}

.thanks-next p {
    font-size: 16px;
    color: #5a6c7d;
}

.legal-content {
    padding: 60px 30px 80px;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 28px;
    color: #2c5f7f;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    font-size: 22px;
    color: #2c5f7f;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-text ul {
    margin: 20px 0 20px 30px;
}

.legal-text ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-date {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e8f1f7;
    font-style: italic;
    color: #7a6c5d;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .split-container,
    .testimonials-split,
    .form-container-split,
    .footer-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

    .split-container.reverse {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 20px;
    }

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

    .services-grid {
        flex-direction: column;
    }

    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

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