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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #2C5F8D;
}

.header-right {
    display: flex;
    gap: 30px;
}

.header-right a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.header-right a:hover {
    color: #2C5F8D;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 8%;
    background-color: #2C5F8D;
    color: #fff;
}

.hero-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

.intro-split {
    display: flex;
    min-height: 400px;
}

.intro-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 8%;
    background-color: #fff;
}

.intro-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2C5F8D;
}

.intro-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.values-section {
    padding: 80px 8%;
    background-color: #f4f6f8;
}

.values-section h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #2C5F8D;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 35px 30px;
    background-color: #fff;
    border-left: 4px solid #2C5F8D;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #333;
}

.value-card p {
    font-size: 15px;
    color: #666;
}

.services-preview-split {
    display: flex;
    min-height: 400px;
    background-color: #fff;
}

.services-preview-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 8%;
}

.services-preview-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2C5F8D;
}

.services-preview-content p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555;
}

.services-preview-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.form-section {
    padding: 80px 8%;
    background-color: #f9fafb;
}

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

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

.form-left h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2C5F8D;
}

.form-left p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555;
}

.form-benefits {
    list-style: none;
    padding-left: 0;
}

.form-benefits li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #555;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2C5F8D;
    font-weight: bold;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.contact-form select,
.contact-form input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: border-color 0.3s;
}

.contact-form select:focus,
.contact-form input:focus {
    outline: none;
    border-color: #2C5F8D;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2C5F8D;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2C5F8D;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2C5F8D;
    transition: all 0.3s;
}

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

.testimonial-split {
    display: flex;
    min-height: 450px;
    background-color: #fff;
}

.testimonial-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 8%;
    background-color: #f4f6f8;
}

.testimonial-content blockquote {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #fff;
    border-left: 4px solid #2C5F8D;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-content blockquote p {
    font-size: 16px;
    font-style: italic;
    color: #444;
    margin-bottom: 10px;
}

.testimonial-content cite {
    font-style: normal;
    font-weight: 600;
    color: #2C5F8D;
    font-size: 14px;
}

.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 50px 8% 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

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

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #2C5F8D;
}

.footer-disclaimer {
    padding: 25px;
    background-color: #252525;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C5F8D;
    color: #fff;
    padding: 20px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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 {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

.cookie-accept {
    background-color: #fff;
    color: #2C5F8D;
}

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

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

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.page-hero {
    padding: 80px 8%;
    background-color: #2C5F8D;
    color: #fff;
    text-align: center;
}

.page-hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.services-intro-split {
    display: flex;
    min-height: 400px;
    background-color: #f8f9fa;
}

.services-intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 8%;
}

.services-intro-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2C5F8D;
}

.services-intro-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.services-intro-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.services-detailed {
    padding: 60px 8%;
    background-color: #fff;
}

.services-detailed h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 60px;
    color: #2C5F8D;
}

.service-item-split {
    display: flex;
    min-height: 350px;
    margin-bottom: 50px;
    gap: 40px;
}

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

.service-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h4 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2C5F8D;
}

.service-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2C5F8D;
    font-weight: bold;
    font-size: 18px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #2C5F8D;
    margin-top: 15px;
}

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

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

.cta-section {
    padding: 80px 8%;
    background-color: #f4f6f8;
    text-align: center;
}

.cta-section h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2C5F8D;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.cta-section .cta-primary,
.cta-section .cta-secondary {
    width: auto;
}

.about-split {
    display: flex;
    min-height: 450px;
}

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

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

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 8%;
    background-color: #f8f9fa;
}

.about-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2C5F8D;
}

.about-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.philosophy-section {
    padding: 80px 8%;
    background-color: #fff;
}

.philosophy-section h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #2C5F8D;
}

.philosophy-split {
    display: flex;
    gap: 50px;
    align-items: center;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.philosophy-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.values-detailed {
    padding: 80px 8%;
    background-color: #f4f6f8;
}

.values-detailed h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 60px;
    color: #2C5F8D;
}

.value-item-split {
    display: flex;
    min-height: 350px;
    margin-bottom: 50px;
    gap: 40px;
}

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

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

.value-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2C5F8D;
}

.value-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.value-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.expertise-section {
    padding: 80px 8%;
    background-color: #fff;
}

.expertise-section h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #2C5F8D;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.expertise-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    text-align: center;
}

.expertise-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2C5F8D;
}

.expertise-card p {
    font-size: 14px;
    color: #666;
}

.approach-split {
    display: flex;
    min-height: 450px;
    background-color: #f4f6f8;
}

.approach-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 8%;
}

.approach-content h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2C5F8D;
}

.approach-steps {
    list-style: none;
    counter-reset: step-counter;
}

.approach-steps li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.approach-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: #2C5F8D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.approach-steps strong {
    color: #333;
}

.approach-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info {
    flex: 1;
    padding: 60px 8%;
    background-color: #f8f9fa;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #2C5F8D;
}

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

.contact-block h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2C5F8D;
}

.contact-block p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    color: #777;
    margin-top: 10px;
}

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

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

.contact-why {
    padding: 80px 8%;
    background-color: #fff;
}

.contact-why h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #2C5F8D;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.why-item {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
}

.why-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2C5F8D;
}

.why-item p {
    font-size: 14px;
    color: #666;
}

.faq-section {
    padding: 80px 8%;
    background-color: #f4f6f8;
}

.faq-section h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #2C5F8D;
}

.faq-split {
    display: flex;
    gap: 50px;
}

.faq-content {
    flex: 1;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2C5F8D;
}

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

.faq-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.thanks-section {
    padding: 80px 8%;
    background-color: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    background-color: #fff;
    padding: 60px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2C5F8D;
}

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

.selected-service {
    padding: 20px;
    background-color: #f4f6f8;
    margin-bottom: 30px;
    font-size: 16px;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2C5F8D;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background-color: #2C5F8D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.thanks-info {
    text-align: left;
    margin-bottom: 40px;
}

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

.thanks-info p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555;
}

.preparation-list {
    list-style: none;
    margin-bottom: 15px;
}

.preparation-list li {
    padding: 6px 0 6px 25px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.preparation-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2C5F8D;
    font-weight: bold;
    font-size: 18px;
}

.preparation-note {
    font-size: 13px;
    font-style: italic;
    color: #777;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.legal-page {
    padding: 60px 8%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
}

.legal-page h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2C5F8D;
}

.legal-intro {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
    font-style: italic;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2C5F8D;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #333;
}

.legal-page p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

.legal-page a {
    color: #2C5F8D;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1f4563;
}

.legal-contact,
.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #666;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #2C5F8D;
    color: #fff;
    font-weight: 600;
}

.cookie-table td {
    font-size: 14px;
    color: #555;
}

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

    .header-right {
        gap: 15px;
    }

    .hero-split,
    .intro-split,
    .services-preview-split,
    .testimonial-split,
    .services-intro-split,
    .service-item-split,
    .about-split,
    .philosophy-split,
    .value-item-split,
    .approach-split,
    .contact-split,
    .faq-split {
        flex-direction: column;
    }

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

    .form-container-split {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .thanks-container {
        padding: 40px 30px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .cta-primary,
    .thanks-actions .cta-secondary {
        width: 100%;
    }
}