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

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.floating-nav {
    position: sticky;
    top: 37px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 15px 0;
}

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

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

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

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-left {
    position: relative;
    overflow: hidden;
}

.split-left img,
.split-right img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.split-right h1 {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #2c3e50;
}

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

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.intro-section {
    padding: 100px 30px;
    background-color: #ecf0f1;
}

.content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.content-centered h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.content-centered p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.services-split {
    display: flex;
    min-height: 700px;
}

.split-content-right,
.split-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-left,
.split-content-right {
    position: relative;
    overflow: hidden;
}

.split-content-left img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.split-content-right h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 35px;
}

.service-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.link-inline {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
}

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

.trust-section {
    padding: 90px 30px;
    background-color: #ffffff;
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.text-block p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
}

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

.benefits-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 17px;
    color: #555;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.image-block {
    flex: 1;
    position: relative;
    min-height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.image-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonials-inline {
    padding: 80px 30px;
    background-color: #34495e;
    color: #ffffff;
}

.testimonial-item {
    max-width: 900px;
    margin: 0 auto 50px;
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

.testimonial-item p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    font-size: 16px;
    color: #bdc3c7;
}

.form-section-split {
    display: flex;
    min-height: 700px;
}

.form-container-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #ecf0f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-container-left p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #555;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consultation-form label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.consultation-form input,
.consultation-form select {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    background-color: #ffffff;
}

.submit-btn {
    padding: 15px 35px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.form-image-right img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.disclaimer-section {
    padding: 70px 30px;
    background-color: #fef5e7;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #d68910;
}

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

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

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-column p,
.footer-column li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #bdc3c7;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ecf0f1;
    padding: 25px 30px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    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 {
    flex: 1;
    font-size: 15px;
}

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

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

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

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

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

.cookie-reject:hover {
    background-color: #6c7a89;
}

.cookie-learn {
    color: #3498db;
    text-decoration: none;
    font-size: 15px;
}

.cookie-learn:hover {
    text-decoration: underline;
}

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

.split-text-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ecf0f1;
}

.split-text-left h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.split-text-left p {
    font-size: 18px;
    color: #555;
}

.split-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-image-right img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.story-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.values-split {
    display: flex;
    min-height: 650px;
}

.image-left-block {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.image-left-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text-right-block {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-right-block h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.text-right-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.approach-list {
    list-style: none;
    padding-left: 0;
    margin-top: 25px;
}

.approach-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 17px;
    color: #555;
}

.approach-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 20px;
}

.expertise-section {
    padding: 100px 30px;
    background-color: #ecf0f1;
}

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

.content-box {
    flex: 1;
}

.content-box h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.content-box p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

.expertise-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.expertise-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
}

.expertise-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.expertise-item p {
    font-size: 16px;
    margin-bottom: 0;
    color: #555;
}

.image-box {
    flex: 1;
    position: relative;
    min-height: 700px;
    border-radius: 8px;
    overflow: hidden;
}

.image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.commitment-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.content-wide {
    max-width: 1000px;
    margin: 0 auto;
}

.content-wide h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.content-wide p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.team-cta {
    padding: 80px 30px;
    background-color: #3498db;
}

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box-centered h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-box-centered p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #3498db;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #ecf0f1;
}

.services-hero {
    padding: 100px 30px;
    background-color: #34495e;
    text-align: center;
}

.hero-content-centered h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-content-centered p {
    font-size: 20px;
    color: #ecf0f1;
}

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

.service-row-split {
    display: flex;
    min-height: 600px;
    margin-bottom: 60px;
}

.service-row-split-reverse {
    display: flex;
    min-height: 600px;
    margin-bottom: 60px;
    flex-direction: row-reverse;
}

.service-detail-left,
.service-detail-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-left h2,
.service-detail-right h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-left p,
.service-detail-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.service-includes {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.service-includes li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-price-box {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.price-label {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.service-image-right,
.service-image-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.service-image-right img,
.service-image-left img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services-cta {
    padding: 80px 30px;
    background-color: #ecf0f1;
}

.cta-centered-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-centered-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.contact-hero {
    padding: 80px 30px;
    background-color: #34495e;
    text-align: center;
}

.centered-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ffffff;
}

.centered-header p {
    font-size: 18px;
    color: #ecf0f1;
}

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

.contact-info-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.contact-info-left h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-detail-block {
    margin-bottom: 40px;
}

.contact-detail-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-detail-block p {
    font-size: 17px;
    color: #555;
    margin-bottom: 8px;
}

.note-text {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

.contact-map-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.contact-map-right img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-faq {
    padding: 80px 30px;
    background-color: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

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

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

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

.accessibility-note {
    padding: 60px 30px;
    background-color: #ecf0f1;
}

.accessibility-content {
    max-width: 900px;
    margin: 0 auto;
}

.accessibility-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.thanks-section {
    padding: 100px 30px;
    background-color: #ecf0f1;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #27ae60;
    text-align: center;
}

.thanks-container > p {
    font-size: 20px;
    margin-bottom: 50px;
    color: #555;
    text-align: center;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.step-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
}

.step-item p {
    font-size: 17px;
    color: #555;
}

.thanks-service-reference {
    text-align: center;
    margin-bottom: 40px;
}

.service-confirm {
    font-size: 18px;
    color: #2c3e50;
    background-color: #d5f4e6;
    padding: 15px 25px;
    border-radius: 5px;
    display: inline-block;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

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

.btn-secondary:hover {
    background-color: #6c7a89;
}

.legal-page {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.last-updated {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-container p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 25px;
    padding-left: 40px;
}

.legal-container li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-split,
    .services-split,
    .split-layout-alt,
    .form-section-split,
    .page-hero-split,
    .values-split,
    .split-layout-reverse,
    .service-row-split,
    .service-row-split-reverse,
    .contact-split-section {
        flex-direction: column;
    }

    .split-right h1,
    .split-text-left h1,
    .hero-content-centered h1,
    .thanks-container h1 {
        font-size: 36px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}