/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5490;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 2.5rem;
}

.nav-right a {
    font-weight: 500;
    color: #2c3e50;
    position: relative;
}

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

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a5490;
    transition: width 0.3s ease;
}

.nav-right a:hover::after {
    width: 100%;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
}

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

.hero-content p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    background: #f0f4f8;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a5490;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid #1a5490;
}

.cta-primary:hover {
    background: #144070;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.3);
}

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

.cta-secondary:hover {
    background: #1a5490;
    color: #ffffff;
}

.cta-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #27ae60;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: #219653;
    transform: translateY(-1px);
}

.cta-large {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: #1a5490;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background: #144070;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 84, 144, 0.4);
}

/* Trust Section - Split Layout */
.trust-section {
    display: flex;
    align-items: center;
}

.trust-visual {
    flex: 1;
    background: #f8f9fa;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-content {
    flex: 1;
    padding: 4rem 8% 4rem 5%;
}

.trust-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

/* Services Preview Section */
.services-preview {
    padding: 5rem 0;
    background: #fafbfc;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    padding: 0 5%;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #666;
}

/* Service Split Layout */
.service-split {
    display: flex;
    margin-bottom: 0;
    min-height: 550px;
}

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

.service-info {
    flex: 1;
    padding: 3.5rem 5%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-visual {
    flex: 1;
    background: #e8edf2;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-info h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.service-info ul {
    margin-bottom: 1.5rem;
}

.service-info ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    color: #444;
}

.service-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: #1a5490;
    margin: 1.5rem 0;
}

/* Why Section */
.why-section {
    display: flex;
    align-items: center;
    background: #ffffff;
}

.why-content {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
}

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

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

.why-visual {
    flex: 1;
    background: #f0f4f8;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.feature-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 220px;
}

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

.feature-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Testimonials Split */
.testimonials-split {
    display: flex;
    background: #f8f9fa;
}

.testimonial-visual {
    flex: 1;
    background: #e0e6ed;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.testimonial-content {
    flex: 1;
    padding: 4rem 8% 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

blockquote {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 4px solid #1a5490;
}

blockquote p {
    font-size: 1.15rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.7;
}

cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

/* Form Section Split */
.form-section {
    padding: 5rem 0;
    background: #ffffff;
}

.form-container-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-intro {
    flex: 1;
    background: #1a5490;
    color: #ffffff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.95;
}

.form-benefits p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.form-wrapper {
    flex: 1;
    background: #ffffff;
    padding: 4rem;
}

.contact-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    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: #1a5490;
}

.cta-submit {
    width: 100%;
    padding: 1.1rem;
    background: #27ae60;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-submit:hover {
    background: #219653;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

/* CTA Final Section */
.cta-final {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #1a5490 0%, #144070 100%);
    text-align: center;
}

.cta-final-content h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-final-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-final .cta-large {
    background: #ffffff;
    color: #1a5490;
}

.cta-final .cta-large:hover {
    background: #f0f0f0;
}

/* Footer Split */
.footer-split {
    background: #1a1a1a;
    color: #ffffff;
    padding-top: 4rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    padding: 0 8% 3rem;
    gap: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-col p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding: 1.5rem 8%;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px 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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.cookie-accept:hover {
    background: #219653;
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 1rem 2rem;
    background: #27ae60;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: #219653;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.5);
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 400px;
    align-items: center;
    background: #f8f9fa;
}

.page-hero-split .hero-content {
    flex: 1;
    padding: 3rem 5% 3rem 8%;
}

.page-hero-split .hero-content h1 {
    font-size: 2.8rem;
}

.page-hero-split .hero-visual {
    flex: 1;
    min-height: 400px;
    background: #e0e6ed;
}

/* Story Section */
.story-section {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.story-visual {
    flex: 1;
    background: #f0f4f8;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 1;
    padding: 3rem 8% 3rem 5%;
}

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

.story-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    display: flex;
    align-items: center;
    background: #fafbfc;
}

.values-content {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
}

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

.values-visual {
    flex: 1;
    background: #e8edf2;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.values-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #1a5490;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 5rem 8%;
    background: #ffffff;
    text-align: center;
}

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

.team-intro {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.team-member {
    flex: 1 1 300px;
    max-width: 350px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin: 1.5rem 1rem 0.5rem;
    font-weight: 600;
}

.team-member p {
    color: #666;
    padding: 0 1rem 1.5rem;
    font-size: 0.95rem;
}

/* CTA About */
.cta-about {
    padding: 5rem 5%;
    background: #1a5490;
    text-align: center;
}

.cta-about .cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 700;
}

.cta-about .cta-primary {
    background: #ffffff;
    color: #1a5490;
}

.cta-about .cta-primary:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

/* Services Detailed */
.services-detailed {
    background: #ffffff;
}

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

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

.service-detail-info {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafbfc;
}

.service-detail-split:nth-child(even) .service-detail-info {
    background: #ffffff;
}

.service-detail-visual {
    flex: 1;
    background: #e8edf2;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-detail-info h2 {
    font-size: 2.3rem;
    color: #1a1a1a;
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.service-tagline {
    font-size: 1.15rem;
    color: #1a5490;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-detail-info > p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-detail-info h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.service-includes {
    margin-bottom: 2rem;
}

.service-includes li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #444;
    font-size: 1.05rem;
}

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

.price-display {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #ffffff;
    border-left: 5px solid #1a5490;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.service-detail-split:nth-child(even) .price-display {
    background: #f8f9fa;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a5490;
}

.price-period {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 8%;
    background: #f8f9fa;
    text-align: center;
}

.comparison-section h2 {
    font-size: 2.3rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 700;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.comparison-header {
    display: flex;
    background: #1a5490;
    color: #ffffff;
    font-weight: 700;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background: #f8f9fa;
}

.comparison-cell {
    flex: 1;
    padding: 1.2rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.comparison-row .comparison-cell {
    border-right: 1px solid #e0e0e0;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-header .comparison-cell:first-child {
    text-align: left;
    flex: 1.2;
}

.comparison-row .comparison-cell:first-child {
    text-align: left;
    font-weight: 600;
    flex: 1.2;
}

/* CTA Services */
.cta-services {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #1a5490 0%, #144070 100%);
    text-align: center;
}

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

.cta-services .cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-services .cta-primary {
    background: #ffffff;
    color: #1a5490;
}

.cta-services .cta-primary:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 0;
    background: #ffffff;
}

.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
    padding: 3rem 5%;
}

.contact-details h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

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

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

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

.contact-item a {
    color: #1a5490;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item .highlight {
    color: #27ae60;
    font-weight: 600;
}

.contact-item ul {
    margin-top: 1rem;
}

.contact-item ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #555;
}

.contact-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
}

.contact-visual {
    flex: 1;
    background: #f0f4f8;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-cta-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-cta-box h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-cta-box p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 4rem 8%;
    background: #fafbfc;
    text-align: center;
}

.map-section h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 700;
}

.map-placeholder {
    max-width: 1000px;
    margin: 0 auto;
    background: #e8edf2;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-placeholder p {
    padding: 2rem;
    font-size: 1.05rem;
    color: #666;
}

/* Thanks Section */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: #fafbfc;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.thanks-service-info {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #1a5490;
    font-weight: 600;
}

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

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    flex: 1;
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

.step-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.thanks-contact {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid #1a5490;
}

.thanks-contact p {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    color: #555;
}

.thanks-contact a {
    color: #1a5490;
    font-weight: 600;
}

.thanks-contact a:hover {
    text-decoration: underline;
}

/* Legal Page */
.legal-page {
    padding: 4rem 8%;
    background: #ffffff;
    min-height: 70vh;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.legal-content h2 {
    font-size: 1.9rem;
    color: #1a1a1a;
    margin: 2.5rem 0 1.2rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #1a5490;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.7;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: #1a5490;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table thead {
    background: #f0f4f8;
}

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

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #555;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1.5rem;
    }

    .hero-split,
    .trust-section,
    .service-split,
    .why-section,
    .testimonials-split,
    .form-container-split,
    .page-hero-split,
    .story-section,
    .values-section,
    .service-detail-split,
    .contact-info-split {
        flex-direction: column;
    }

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

    .hero-content,
    .trust-content,
    .service-info,
    .why-content,
    .testimonial-content,
    .story-content,
    .values-content,
    .service-detail-info,
    .contact-details {
        padding: 2.5rem 5%;
    }

    .hero-visual,
    .trust-visual,
    .service-visual,
    .why-visual,
    .testimonial-visual,
    .story-visual,
    .values-visual,
    .service-detail-visual,
    .contact-visual {
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .form-intro,
    .form-wrapper {
        padding: 2.5rem;
    }

    .footer-main {
        flex-direction: column;
        padding: 0 5% 2rem;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

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

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

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-cell {
        padding: 0.8rem 0.5rem;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .section-header-centered h2,
    .trust-content h2,
    .why-content h2 {
        font-size: 1.8rem;
    }

    .service-info h3 {
        font-size: 1.6rem;
    }

    .price-tag {
        font-size: 1.6rem;
    }

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

    .feature-item {
        flex: 1 1 100%;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .legal-content h1 {
        font-size: 2.2rem;
    }

    .legal-content h2 {
        font-size: 1.6rem;
    }

    .cookie-table {
        font-size: 0.75rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.6rem;
    }
}
