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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-left .logo {
    font-size: 26px;
    font-weight: 700;
    color: #1a5490;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 32px;
}

.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #1a5490;
}

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

.hero-content {
    flex: 1;
    padding: 80px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a5490;
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 36px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a5490;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #14447a;
    transform: translateY(-2px);
}

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

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

.intro-offset {
    display: flex;
    padding: 100px 6%;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1.5;
}

.intro-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 600;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.stat-block {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background-color: #f0f4f8;
    border-radius: 8px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #4a5568;
}

.services-preview {
    padding: 100px 6%;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.services-header p {
    font-size: 19px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.service-row-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    background-color: #e5e9ed;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    padding: 20px;
}

.service-details h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.price {
    display: block;
    font-size: 22px;
    color: #1a5490;
    font-weight: 700;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 32px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background-color: #14447a;
    transform: translateY(-2px);
}

.testimonials-inline {
    padding: 100px 6%;
    background-color: #f0f4f8;
    display: flex;
    gap: 60px;
}

.testimonial-item {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-item blockquote {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-item cite {
    font-size: 15px;
    color: #1a5490;
    font-style: normal;
    font-weight: 600;
}

.cta-section-full {
    padding: 120px 6%;
    background-color: #1a5490;
    text-align: center;
}

.cta-content-center h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 600;
}

.cta-content-center p {
    font-size: 19px;
    color: #e8f0f7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: #ffffff;
    color: #1a5490;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-large:hover {
    background-color: #f0f4f8;
    transform: translateY(-2px);
}

.form-section-split {
    display: flex;
    padding: 100px 6%;
    gap: 80px;
    background-color: #ffffff;
}

.form-left {
    flex: 1;
    padding-right: 40px;
}

.form-left h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 600;
}

.form-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 48px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5490;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.about-inline {
    padding: 100px 6%;
    background-color: #fafbfc;
}

.about-content-asymmetric {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1.3;
}

.about-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 28px;
    font-weight: 600;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.about-image-offset {
    flex: 0.7;
    background-color: #e5e9ed;
    border-radius: 12px;
    overflow: hidden;
}

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

.footer-split {
    background-color: #2c3e50;
    color: #e8e8e8;
    padding: 60px 6% 20px 6%;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #b8bec4;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #b8bec4;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    padding: 32px;
    background-color: #34495e;
    border-radius: 6px;
    margin-bottom: 32px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #b8bec4;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
}

.footer-bottom p {
    font-size: 13px;
    color: #b8bec4;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 24px 6%;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #e8e8e8;
    margin: 0;
}

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

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

.cookie-accept {
    background-color: #1a5490;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: transparent;
    color: #e8e8e8;
    border: 1px solid #4a5568;
}

.cookie-reject:hover {
    background-color: #34495e;
}

.cookie-more {
    color: #b8bec4;
    font-size: 14px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-more:hover {
    color: #ffffff;
}

.about-hero-split,
.mission-split,
.approach-split,
.results-split {
    display: flex;
    min-height: 500px;
    align-items: center;
    padding: 80px 6%;
    gap: 60px;
}

.about-hero-split {
    background-color: #fafbfc;
}

.mission-split {
    background-color: #ffffff;
}

.approach-split {
    background-color: #f0f4f8;
}

.results-split {
    background-color: #ffffff;
}

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

.mission-text,
.approach-text,
.results-text {
    flex: 1;
}

.mission-image,
.approach-image,
.results-stats {
    flex: 1;
    background-color: #e5e9ed;
    border-radius: 12px;
    overflow: hidden;
}

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

.team-section {
    padding: 100px 6%;
    background-color: #f0f4f8;
    text-align: center;
}

.team-intro {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.team-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.team-member-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    text-align: left;
}

.team-member-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.team-member-card .role {
    font-size: 15px;
    color: #1a5490;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.team-member-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.values-section {
    padding: 100px 6%;
    background-color: #ffffff;
    text-align: center;
}

.values-section h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 600;
}

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

.value-item {
    flex: 1;
    text-align: left;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    color: #1a5490;
    margin-bottom: 16px;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.results-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.stat-large {
    font-size: 64px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 12px;
}

.stat-desc {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.cta-section-centered {
    padding: 100px 6%;
    background-color: #f0f4f8;
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-section-centered p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 36px;
}

.services-hero {
    padding: 100px 6%;
    background-color: #fafbfc;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 52px;
    color: #1a5490;
    margin-bottom: 28px;
    font-weight: 700;
}

.services-hero-content p {
    font-size: 19px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-full {
    padding: 80px 6%;
    background-color: #ffffff;
}

.service-item-full {
    display: flex;
    gap: 80px;
    margin-bottom: 100px;
    align-items: center;
}

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

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

.service-content-left h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 600;
}

.service-content-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-price-large {
    font-size: 28px;
    color: #1a5490;
    font-weight: 700;
    margin: 28px 0;
}

.service-image-right {
    flex: 1;
    background-color: #e5e9ed;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

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

.how-to-choose {
    padding: 80px 6%;
    background-color: #f0f4f8;
}

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

.how-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 600;
}

.how-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

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

.contact-hero-content {
    flex: 1;
    padding: 80px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-hero-content h1 {
    font-size: 48px;
    color: #1a5490;
    margin-bottom: 24px;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    max-width: 500px;
}

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

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

.contact-info-split {
    display: flex;
    gap: 80px;
    padding: 100px 6%;
    background-color: #ffffff;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 36px;
}

.contact-item h3 {
    font-size: 18px;
    color: #1a5490;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e5e9ed;
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.location-note {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.faq-section {
    padding: 100px 6%;
    background-color: #f0f4f8;
}

.faq-section h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.faq-item h3 {
    font-size: 19px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.visit-info {
    padding: 80px 6%;
    background-color: #ffffff;
}

.visit-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.visit-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 600;
}

.visit-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.thanks-section-split {
    display: flex;
    min-height: 500px;
    padding: 100px 6%;
    gap: 80px;
    align-items: center;
    background-color: #fafbfc;
}

.thanks-content {
    flex: 1.5;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a5490;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-service {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 16px;
    padding: 16px;
    background-color: #f0f4f8;
    border-radius: 6px;
}

.thanks-greeting {
    font-size: 20px;
    color: #1a5490;
    font-weight: 600;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 36px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a5490;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid #1a5490;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background-color: #f0f4f8;
    transform: translateY(-2px);
}

.thanks-image {
    flex: 1;
    background-color: #e5e9ed;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

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

.next-steps {
    padding: 80px 6%;
    background-color: #ffffff;
}

.next-steps h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 600;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 32px 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #1a5490;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.step-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 600;
}

.step-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

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

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

.legal-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 32px;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 20px 0 20px 32px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
}

.legal-content a {
    color: #1a5490;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #14447a;
}

@media (max-width: 768px) {
    .hero-split,
    .service-row-split,
    .form-section-split,
    .intro-offset,
    .about-content-asymmetric,
    .testimonials-inline,
    .footer-content,
    .about-hero-split,
    .mission-split,
    .approach-split,
    .results-split,
    .contact-hero-split,
    .contact-info-split,
    .thanks-section-split,
    .service-item-full {
        flex-direction: column;
    }

    .service-row-split.reverse,
    .approach-split.reverse,
    .service-item-full.reverse {
        flex-direction: column;
    }

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

    .nav-right {
        flex-wrap: wrap;
        gap: 16px;
    }

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

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

    .faq-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

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

    .service-image-right,
    .thanks-image {
        height: 300px;
    }
}