* {
    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.7;
    color: #2c2c2c;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #4a90e2;
    color: white;
}

.btn-cookie:hover {
    background: #357abd;
    transform: translateY(-1px);
}

.btn-reject {
    background: transparent;
    border: 1px solid #666;
    color: #ffffff;
}

.btn-reject:hover {
    background: #333;
    border-color: #999;
}

.nav-main {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a1a1a;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem 4rem 6rem;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2d5f8d;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 95, 141, 0.2);
}

.cta-primary:hover {
    background: #234a6d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 95, 141, 0.3);
}

.intro-split {
    display: flex;
    padding: 6rem 0;
}

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

.intro-image {
    flex: 1;
}

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

.intro-text {
    flex: 1;
    padding: 3rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.value-cards {
    padding: 6rem 4rem;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.section-title.centered {
    text-align: center;
}

.cards-container {
    display: flex;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.content-split {
    display: flex;
    padding: 6rem 0;
}

.content-left {
    flex: 1;
    padding: 3rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.content-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.content-right {
    flex: 1;
    padding: 3rem 5rem 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-preview {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid #2d5f8d;
}

.service-preview h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-preview .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5f8d;
    margin-bottom: 0.8rem;
}

.service-preview p {
    color: #666;
    font-size: 1rem;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #2d5f8d;
    border: 2px solid #2d5f8d;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-secondary:hover {
    background: #2d5f8d;
    color: white;
}

.testimonial-section {
    background: #1a1a1a;
    padding: 5rem 4rem;
    color: white;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-wrapper blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #f0f0f0;
}

.testimonial-wrapper cite {
    font-style: normal;
    color: #999;
    font-size: 1rem;
}

.process-split {
    display: flex;
    padding: 6rem 0;
}

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

.process-text {
    flex: 1;
    padding: 3rem 5rem;
}

.process-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2d5f8d;
    min-width: 50px;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.step p {
    color: #666;
    line-height: 1.7;
}

.process-image {
    flex: 1;
}

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

.form-section {
    padding: 6rem 4rem;
    background: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.1rem;
    color: #666;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #2d5f8d;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #234a6d;
    transform: translateY(-2px);
}

.final-cta-split {
    display: flex;
    min-height: 500px;
    background: #1a1a1a;
}

.cta-content {
    flex: 1;
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #ccc;
}

.cta-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #1a1a1a;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-visual {
    flex: 1;
    background: linear-gradient(135deg, #2d5f8d 0%, #1a3a54 100%);
}

.site-footer {
    background: #0f0f0f;
    color: #999;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-column p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column a {
    color: #999;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    max-width: 1300px;
    margin: 0 auto;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: #c74440;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(199, 68, 64, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #a33935;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(199, 68, 64, 0.5);
}

.page-header-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.header-content {
    flex: 1;
    padding: 4rem 5rem;
}

.header-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #1a1a1a;
}

.lead-text {
    font-size: 1.3rem;
    color: #666;
}

.header-visual {
    flex: 1;
}

.header-visual img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.content-image {
    flex: 1;
}

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

.content-text {
    flex: 1;
    padding: 3rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.content-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.insight-block {
    padding: 6rem 4rem;
    background: #2d5f8d;
    color: white;
}

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

.insight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.insight-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e8e8e8;
}

.approach-split {
    display: flex;
    padding: 6rem 0;
}

.approach-text {
    flex: 1;
    padding: 3rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
}

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

.principles-section {
    padding: 6rem 4rem;
    background: #f8f9fa;
}

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.principle-card {
    flex: 1 1 calc(50% - 1rem);
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.principle-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.principle-card p {
    color: #666;
    line-height: 1.7;
}

.experience-split {
    display: flex;
    padding: 6rem 0;
}

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

.experience-image {
    flex: 1;
}

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

.experience-text {
    flex: 1;
    padding: 3rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.experience-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.difference-block {
    padding: 6rem 4rem;
    background: #1a1a1a;
    color: white;
}

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

.difference-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.difference-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e8e8e8;
}

.cta-split {
    display: flex;
    padding: 6rem 4rem;
    background: #f8f9fa;
    align-items: center;
}

.cta-left {
    flex: 1.5;
    padding-right: 3rem;
}

.cta-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cta-left p {
    font-size: 1.1rem;
    color: #666;
}

.cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cta-outline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: white;
    color: #2d5f8d;
    border: 2px solid #2d5f8d;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-outline:hover {
    background: #2d5f8d;
    color: white;
}

.page-header-simple {
    padding: 5rem 4rem 3rem;
    text-align: center;
    background: #f8f9fa;
}

.page-header-simple h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #1a1a1a;
}

.services-intro-split {
    display: flex;
    padding: 5rem 4rem;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.intro-left {
    flex: 1.5;
}

.intro-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.intro-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.intro-right {
    flex: 1;
}

.info-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d5f8d;
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.info-box ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.info-box ul li {
    color: #666;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.services-grid-section {
    padding: 4rem 0;
}

.service-card-full {
    display: flex;
    margin-bottom: 4rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.service-card-content {
    flex: 1.2;
    padding: 3rem 4rem;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-content h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5f8d;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5f8d;
    font-weight: bold;
}

.service-card-image {
    flex: 1;
}

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

.pricing-notes {
    padding: 5rem 4rem;
    background: #f8f9fa;
}

.notes-content {
    max-width: 1200px;
    margin: 0 auto;
}

.notes-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.notes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.note-item {
    flex: 1 1 calc(50% - 1rem);
    background: white;
    padding: 2rem;
    border-radius: 6px;
}

.note-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.note-item p {
    color: #666;
    line-height: 1.7;
}

.service-cta-split {
    display: flex;
    padding: 5rem 4rem;
    align-items: center;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.cta-content-left {
    flex: 1.5;
}

.cta-content-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cta-content-left p {
    font-size: 1.1rem;
    color: #666;
}

.cta-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.contact-intro {
    flex: 1;
    padding: 4rem 5rem;
}

.contact-intro h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

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

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

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #2d5f8d;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #234a6d;
}

.contact-note {
    font-size: 0.95rem;
    color: #999;
    margin-top: 0.8rem;
}

.contact-map-placeholder {
    flex: 1;
    background: #e8e8e8;
    min-height: 400px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.75);
    color: white;
    padding: 2rem;
}

.map-overlay p {
    margin: 0;
    line-height: 1.6;
}

.contact-faq-section {
    padding: 5rem 4rem;
    background: #f8f9fa;
}

.contact-faq-section h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background: white;
    padding: 2rem;
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

.contact-cta-block {
    padding: 5rem 4rem;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #2d5f8d;
    padding: 4rem 3rem;
    border-radius: 12px;
    color: white;
}

.cta-inner h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-inner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e8e8e8;
}

.thanks-hero {
    padding: 5rem 4rem;
    min-height: 70vh;
}

.thanks-container {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1.5;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2.5rem;
    border-left: 4px solid #2d5f8d;
}

.thanks-info p {
    margin: 0.5rem 0;
    color: #555;
}

.thanks-next {
    margin-bottom: 3rem;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-icon {
    width: 45px;
    height: 45px;
    background: #2d5f8d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.step-text p {
    color: #666;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.2rem;
}

.thanks-visual {
    flex: 1;
}

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

.thanks-testimonial {
    background: #f8f9fa;
    padding: 5rem 4rem;
}

.legal-page {
    padding: 5rem 4rem;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.updated-date {
    color: #999;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-container p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.legal-container ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container ul li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
    color: #555;
}

.legal-container a {
    color: #2d5f8d;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #234a6d;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .content-split,
    .process-split,
    .approach-split,
    .experience-split,
    .final-cta-split,
    .cta-split,
    .page-header-split,
    .contact-hero-split,
    .contact-details-split,
    .services-intro-split,
    .service-card-full,
    .service-cta-split,
    .thanks-container {
        flex-direction: column;
    }

    .hero-left,
    .intro-text,
    .content-left,
    .content-right,
    .process-text,
    .approach-text,
    .experience-text,
    .header-content,
    .contact-intro {
        padding: 3rem 2rem;
    }

    .hero-right img,
    .header-visual img,
    .contact-visual img {
        height: 50vh;
    }

    .cards-container,
    .principles-grid,
    .notes-grid,
    .faq-grid {
        flex-direction: column;
    }

    .value-card,
    .principle-card,
    .note-item,
    .faq-item {
        flex: 1 1 100%;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .service-card-full.reverse {
        flex-direction: column;
    }

    .cta-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-left h1,
    .header-content h1,
    .contact-intro h1,
    .thanks-content h1 {
        font-size: 2.2rem;
    }

    .section-title,
    .intro-text h2,
    .content-left h2,
    .process-text h2,
    .approach-text h2,
    .experience-text h2 {
        font-size: 1.8rem;
    }

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

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

    .btn-cookie {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}