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

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

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    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: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2ecc71;
    color: #ffffff;
}

.btn-accept:hover {
    background: #27ae60;
}

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

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

/* Header - Split Layout */
.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-notice {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 0.4rem 0.8rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

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

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

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 5% 7%;
    background: #f8f9fa;
}

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

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

.hero-right {
    position: relative;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.cta-secondary {
    background: #2c3e50;
    color: #ffffff;
}

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

/* Info Split Sections */
.info-split {
    display: flex;
}

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

.info-image,
.info-content {
    flex: 1;
}

.info-image {
    overflow: hidden;
}

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

.info-content {
    padding: 6% 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

/* Services Highlight Section */
.services-highlight {
    padding: 5% 7%;
    background: #ffffff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.service-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #2980b9;
}

/* Approach Split Section */
.approach-split {
    display: flex;
}

.approach-content,
.approach-visual {
    flex: 1;
}

.approach-content {
    padding: 6% 7%;
    background: #2c3e50;
    color: #ffffff;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    min-width: 60px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ddd;
}

.approach-visual {
    overflow: hidden;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 5% 7%;
    background: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonials-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Form Split Section */
.form-split {
    display: flex;
}

.form-visual,
.form-container {
    flex: 1;
}

.form-visual {
    overflow: hidden;
}

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

.form-container {
    padding: 6% 7%;
    background: #ffffff;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-display {
    padding: 1rem;
    background: #e8f5e9;
    border-left: 4px solid #2ecc71;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #27ae60;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    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 textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    padding: 1.2rem;
    background: #2ecc71;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Trust Indicators Section */
.trust-indicators {
    padding: 5% 7%;
    background: #ffffff;
}

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

.trust-content > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
    max-width: 800px;
}

.trust-points {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
}

.trust-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

/* CTA Section */
.cta-section {
    padding: 5% 7%;
    background: #3498db;
    text-align: center;
}

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

.cta-content-centered p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 7% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
}

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

/* Page Hero */
.page-hero {
    padding: 8% 7%;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #ecf0f1;
}

/* About Split */
.about-split {
    display: flex;
}

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

.about-content,
.about-image {
    flex: 1;
}

.about-content {
    padding: 6% 7%;
}

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

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

.about-image {
    overflow: hidden;
}

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

/* Values Split */
.values-split {
    display: flex;
}

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

.values-image,
.values-content {
    flex: 1;
}

.values-image {
    overflow: hidden;
}

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

.values-content {
    padding: 6% 7%;
    background: #f8f9fa;
}

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

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

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

/* Expertise Section */
.expertise-section {
    padding: 5% 7%;
    background: #ffffff;
}

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

.expertise-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.expertise-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.expertise-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Approach Detail */
.approach-detail {
    padding: 5% 7%;
    background: #ffffff;
}

.approach-detail h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.approach-split-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.approach-text {
    flex: 1.5;
}

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

.approach-image-stack {
    flex: 1;
}

.approach-image-stack img {
    width: 100%;
    border-radius: 8px;
}

/* Commitment Section */
.commitment-section {
    padding: 5% 7%;
    background: #2c3e50;
    color: #ffffff;
}

.commitment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.commitment-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ecf0f1;
    margin-bottom: 1.5rem;
}

/* Service Detail Split */
.service-detail-split {
    display: flex;
    padding: 5% 0;
}

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

.service-detail-content,
.service-detail-image {
    flex: 1;
}

.service-detail-content {
    padding: 4% 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature {
    padding: 0.8rem 1rem;
    background: #f8f9fa;
    border-left: 3px solid #3498db;
    font-size: 1rem;
    color: #2c3e50;
}

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

.price-label {
    font-size: 1rem;
    color: #666;
    margin-right: 1rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
}

.select-service-btn {
    padding: 1.2rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.service-detail-image {
    overflow: hidden;
}

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

/* Service Process */
.service-process {
    padding: 5% 7%;
    background: #f8f9fa;
}

.process-timeline {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1 1 calc(20% - 2rem);
    min-width: 180px;
    text-align: center;
}

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

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

/* Contact Split */
.contact-split {
    display: flex;
}

.contact-info,
.contact-visual {
    flex: 1;
}

.contact-info {
    padding: 6% 7%;
    background: #f8f9fa;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

.contact-visual {
    overflow: hidden;
}

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

/* Location Info */
.location-info {
    padding: 5% 7%;
    background: #ffffff;
}

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

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

/* Availability Section */
.availability-section {
    padding: 5% 7%;
    background: #f8f9fa;
}

.availability-info {
    max-width: 900px;
    margin: 0 auto;
}

.availability-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Response Expectations */
.response-expectations {
    padding: 5% 7%;
    background: #ffffff;
}

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

.response-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

/* Service Selection Reminder */
.service-selection-reminder {
    padding: 5% 7%;
    background: #2c3e50;
    text-align: center;
}

.reminder-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.reminder-content p {
    font-size: 1.15rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 8% 7%;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #ffffff;
    color: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

/* Next Steps */
.next-steps {
    padding: 5% 7%;
    background: #ffffff;
}

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

.next-step {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    text-align: center;
}

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

.next-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

/* Preparation Section */
.preparation-section {
    padding: 5% 7%;
    background: #f8f9fa;
}

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

.preparation-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

/* Additional Resources */
.additional-resources {
    padding: 5% 7%;
    background: #ffffff;
}

.resources-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.resources-content > p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.resource-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.resource-link {
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Contact Reminder */
.contact-reminder {
    padding: 5% 7%;
    background: #f8f9fa;
    text-align: center;
}

.reminder-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.reminder-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.reminder-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

/* Legal Page */
.legal-page {
    padding: 5% 7%;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

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

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

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

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

.cookie-table thead {
    background: #2c3e50;
    color: #ffffff;
}

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

.cookie-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }

    .testimonial {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-split,
    .info-split,
    .approach-split,
    .form-split,
    .about-split,
    .values-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

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

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

    .service-card,
    .testimonial,
    .trust-item,
    .expertise-card,
    .process-step,
    .next-step {
        flex: 1 1 100%;
    }

    .approach-split-layout {
        flex-direction: column;
    }

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