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

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

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.cookie-accept {
    background: #10b981;
    color: #fff;
}

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ad-disclosure {
    font-size: 12px;
    color: #64748b;
    padding: 6px 12px;
    background: #f1f5f9;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #475569;
    font-weight: 500;
    font-size: 15px;
}

.main-nav a:hover {
    color: #2563eb;
    text-decoration: none;
}

.hero-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.hero-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8fafc;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #0f172a;
}

.hero-content-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 32px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #1d4ed8;
    text-decoration: none;
}

.intro-split {
    display: flex;
    align-items: stretch;
}

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

.intro-image-left {
    flex: 1;
    overflow: hidden;
}

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

.intro-content-right {
    flex: 1;
    padding: 60px;
    background: #fff;
}

.intro-content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0f172a;
}

.intro-content-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.services-section {
    padding: 80px 40px;
    background: #fff;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #0f172a;
}

.section-header-center p {
    font-size: 18px;
    color: #64748b;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.service-details {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #0f172a;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 28px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
}

.select-service:hover {
    background: #1d4ed8;
}

.trust-split {
    display: flex;
    padding: 80px 60px;
    background: #f1f5f9;
    align-items: center;
}

.trust-content-left {
    flex: 1;
    padding-right: 60px;
}

.trust-content-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0f172a;
}

.trust-content-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.trust-stats-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #64748b;
}

.testimonials-section {
    padding: 80px 40px;
    background: #fff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #0f172a;
}

.testimonials-split {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #0f172a;
    font-style: normal;
}

.form-section-split {
    display: flex;
    padding: 80px 60px;
    background: #0f172a;
    color: #fff;
    align-items: stretch;
}

.form-intro-left {
    flex: 1;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.form-intro-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #cbd5e1;
}

.form-container-right {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0f172a;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-btn {
    padding: 16px 32px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #1d4ed8;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #fef3c7;
}

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

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

.footer-split {
    background: #1e293b;
    color: #cbd5e1;
    padding: 60px 40px 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

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

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

.footer-column p,
.footer-column ul {
    font-size: 15px;
    line-height: 1.8;
}

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

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

.footer-column a {
    color: #cbd5e1;
}

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

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

.footer-bottom p {
    font-size: 14px;
}

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

.sticky-cta-button {
    padding: 16px 32px;
    background: #10b981;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.sticky-cta-button:hover {
    background: #059669;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.page-hero-split {
    padding: 100px 40px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 52px;
    margin-bottom: 16px;
}

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

.about-intro-split {
    display: flex;
    padding: 80px 60px;
    align-items: center;
}

.about-text-left {
    flex: 1;
    padding-right: 60px;
}

.about-text-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0f172a;
}

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

.about-image-right {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.values-split {
    display: flex;
    padding: 80px 60px;
    background: #f8fafc;
    align-items: center;
}

.values-image-left {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.values-content-right {
    flex: 1;
    padding-left: 60px;
}

.values-content-right h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #0f172a;
}

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

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2563eb;
}

.value-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.approach-section {
    padding: 80px 40px;
    background: #fff;
}

.approach-header {
    text-align: center;
    margin-bottom: 60px;
}

.approach-header h2 {
    font-size: 40px;
    color: #0f172a;
}

.approach-split {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.approach-step {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background: #f8fafc;
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.approach-step h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #0f172a;
}

.approach-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.team-split {
    display: flex;
    padding: 80px 60px;
    background: #f1f5f9;
    align-items: center;
}

.team-content-left {
    flex: 1;
    padding-right: 60px;
}

.team-content-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0f172a;
}

.team-content-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.team-image-right {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.cta-about-section {
    padding: 80px 40px;
    background: #0f172a;
    color: #fff;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-about-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #cbd5e1;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: #10b981;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
}

.cta-button:hover {
    background: #059669;
    text-decoration: none;
}

.services-intro-split {
    display: flex;
    padding: 80px 60px;
    background: #fff;
    align-items: center;
}

.services-intro-left {
    flex: 1;
    padding-right: 60px;
}

.services-intro-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0f172a;
}

.services-intro-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.services-intro-right {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.detailed-services {
    padding: 40px;
    background: #f8fafc;
}

.detailed-service-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 60px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.detailed-service-image {
    flex: 1;
    overflow: hidden;
}

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

.detailed-service-content {
    flex: 1;
    padding: 50px;
}

.detailed-service-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #0f172a;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.detailed-service-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
}

.detailed-service-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #0f172a;
}

.detailed-service-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.detailed-service-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 8px;
}

.service-cta {
    display: inline-block;
    padding: 14px 28px;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 20px;
}

.service-cta:hover {
    background: #1d4ed8;
    text-decoration: none;
}

.services-comparison {
    padding: 80px 40px;
    background: #fff;
}

.services-comparison h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: #0f172a;
}

.comparison-table {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
}

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

.comparison-row.header-row {
    background: #f1f5f9;
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    padding: 20px;
    text-align: center;
    min-width: 150px;
}

.services-faq-split {
    display: flex;
    padding: 80px 60px;
    background: #f8fafc;
}

.faq-intro-left {
    flex: 0 0 300px;
}

.faq-intro-left h2 {
    font-size: 36px;
    color: #0f172a;
}

.faq-content-right {
    flex: 1;
    padding-left: 60px;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.services-cta-section {
    padding: 80px 40px;
    background: #0f172a;
    color: #fff;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.services-cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #cbd5e1;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 42px;
    background: #10b981;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    font-size: 18px;
}

.cta-button-large:hover {
    background: #059669;
    text-decoration: none;
}

.contact-main-split {
    display: flex;
    padding: 80px 60px;
    background: #fff;
    align-items: flex-start;
}

.contact-info-left {
    flex: 0 0 400px;
    padding-right: 60px;
}

.contact-info-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #0f172a;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2563eb;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.contact-content-right {
    flex: 1;
}

.contact-content-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0f172a;
}

.contact-content-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.contact-content-right h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #0f172a;
}

.contact-content-right ul {
    padding-left: 24px;
}

.contact-content-right ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 8px;
}

.contact-map-section {
    padding: 80px 40px;
    background: #f8fafc;
}

.map-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.map-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #0f172a;
}

.map-intro p {
    font-size: 17px;
    color: #64748b;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.contact-info-split {
    display: flex;
    padding: 80px 60px;
    background: #fff;
    align-items: center;
}

.contact-image-left {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-text-right {
    flex: 1;
    padding-left: 60px;
}

.contact-text-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0f172a;
}

.contact-steps {
    list-style: none;
    padding: 0;
}

.contact-steps li {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.contact-steps li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
}

.contact-reassurance {
    padding: 60px 40px;
    background: #f1f5f9;
}

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

.reassurance-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0f172a;
}

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

.link-inline {
    color: #2563eb;
    font-weight: 600;
}

.contact-cta-section {
    padding: 80px 40px;
    background: #0f172a;
    color: #fff;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #cbd5e1;
}

.thanks-hero {
    padding: 100px 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    color: #10b981;
    font-size: 48px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.thanks-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.thanks-details-split {
    display: flex;
    padding: 80px 60px;
    background: #fff;
    align-items: flex-start;
    gap: 60px;
}

.thanks-info-left {
    flex: 1;
}

.thanks-info-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #0f172a;
}

.next-step {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number-thanks {
    flex: 0 0 50px;
    height: 50px;
    background: #2563eb;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.step-content-thanks h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #0f172a;
}

.step-content-thanks p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.thanks-service-info-right {
    flex: 0 0 400px;
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
}

.thanks-service-info-right h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0f172a;
}

.selected-service-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.selected-service-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2563eb;
}

.selected-service-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.thanks-reassurance h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #0f172a;
}

.thanks-reassurance ul {
    list-style: none;
    padding: 0;
}

.thanks-reassurance ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.thanks-reassurance ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.thanks-additional {
    padding: 80px 40px;
    background: #f8fafc;
}

.additional-content h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0f172a;
}

.additional-actions-split {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.action-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.action-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #0f172a;
}

.action-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 24px;
}

.action-link {
    display: inline-block;
    padding: 12px 24px;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
}

.action-link:hover {
    background: #1d4ed8;
    text-decoration: none;
}

.thanks-confirmation-notice {
    padding: 40px;
    background: #fff;
}

.confirmation-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
}

.confirmation-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #78350f;
    margin: 0;
}

.legal-page {
    padding: 60px 40px;
    background: #fff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #0f172a;
}

.legal-updated {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #0f172a;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #0f172a;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

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

.legal-container ul li,
.legal-container ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 8px;
}

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

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

.cookie-table th {
    background: #f1f5f9;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .form-section-split,
    .about-intro-split,
    .values-split,
    .team-split,
    .services-intro-split,
    .detailed-service-split,
    .services-faq-split,
    .contact-main-split,
    .contact-info-split,
    .thanks-details-split {
        flex-direction: column;
    }

    .hero-content-left,
    .intro-content-right,
    .trust-content-left,
    .form-intro-left,
    .about-text-left,
    .values-content-right,
    .team-content-left,
    .services-intro-left,
    .detailed-service-content,
    .faq-content-right,
    .contact-info-left,
    .contact-text-right,
    .thanks-info-left,
    .thanks-service-info-right {
        padding: 40px;
    }

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

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

    .header-right {
        justify-content: center;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .testimonials-split,
    .approach-split,
    .services-grid-split {
        flex-direction: column;
    }

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

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

    .comparison-table {
        font-size: 14px;
    }

    .comparison-cell {
        min-width: 120px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .hero-content-left,
    .intro-content-right,
    .trust-content-left,
    .form-intro-left,
    .about-text-left,
    .values-content-right,
    .team-content-left,
    .services-intro-left,
    .detailed-service-content {
        padding: 30px 20px;
    }

    .header-split {
        padding: 15px 20px;
    }

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

    .section-header-center h2 {
        font-size: 32px;
    }

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