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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2e7cb8;
    --accent-color: #f27c38;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    background: var(--bg-light);
    border-radius: 4px;
}

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

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background: var(--bg-white);
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 5% 5rem 8%;
    background: var(--bg-light);
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content-left p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-image-right {
    flex: 1;
    background-color: #e0e7ed;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.intro-split {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
}

.intro-image-left {
    flex: 1;
    background-color: #dde4ea;
    padding-right: 3rem;
}

.intro-image-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.intro-content-right {
    flex: 1;
    padding-left: 4rem;
}

.intro-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-content-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.features-grid {
    padding: 6rem 8%;
    background: var(--bg-light);
}

.features-grid h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.features-container {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.feature-card {
    flex: 1;
    max-width: 380px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #d1dae2;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--text-dark);
}

.feature-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
}

.services-pricing {
    padding: 6rem 8%;
    background: var(--bg-white);
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.pricing-split-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.pricing-item {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.pricing-features li {
    padding: 0.7rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: var(--primary-color);
}

.form-section {
    padding: 6rem 8%;
    background: var(--bg-light);
}

.form-container-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 8px;
    padding: 3rem;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.form-content {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d86b2a;
}

.trust-section {
    display: flex;
    align-items: center;
    padding: 6rem 8%;
    background: var(--bg-white);
}

.trust-content-left {
    flex: 1;
    padding-right: 4rem;
}

.trust-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.trust-content-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.trust-list {
    margin-top: 2rem;
}

.trust-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    color: var(--text-light);
    position: relative;
}

.trust-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.trust-image-right {
    flex: 1;
    background-color: #dde4ea;
}

.trust-image-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.testimonials {
    padding: 6rem 8%;
    background: var(--bg-light);
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    max-width: 400px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.cta-final {
    padding: 6rem 8%;
    background: var(--primary-color);
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-split {
    display: flex;
    gap: 4rem;
    padding: 4rem 8%;
    background: var(--text-dark);
    color: var(--bg-white);
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-column p,
.footer-column li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.disclaimer {
    padding: 2rem 8%;
    background: #111827;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--success-color);
    color: var(--bg-white);
}

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

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.about-hero {
    padding: 6rem 8%;
    background: var(--bg-light);
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-story-split {
    display: flex;
    align-items: center;
    padding: 6rem 8%;
    background: var(--bg-white);
}

.story-image {
    flex: 1;
    background-color: #dde4ea;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.story-content {
    flex: 1;
    padding-left: 4rem;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.values-section {
    padding: 6rem 8%;
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-light);
}

.team-approach {
    padding: 6rem 8%;
    background: var(--bg-white);
}

.approach-content {
    text-align: center;
    margin-bottom: 4rem;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.approach-content p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.approach-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-light);
}

.expertise-split {
    display: flex;
    align-items: center;
    padding: 6rem 8%;
    background: var(--bg-light);
}

.expertise-content {
    flex: 1;
    padding-right: 4rem;
}

.expertise-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.expertise-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.expertise-list {
    margin-top: 2rem;
}

.expertise-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    color: var(--text-light);
    position: relative;
}

.expertise-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.expertise-image {
    flex: 1;
    background-color: #dde4ea;
}

.expertise-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.commitment-section {
    padding: 6rem 8%;
    background: var(--bg-white);
    text-align: center;
}

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

.commitment-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.commitment-container p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-about {
    padding: 4rem 8%;
    background: var(--primary-color);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

.services-hero {
    padding: 6rem 8%;
    background: var(--bg-light);
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 6rem 8%;
    background: var(--bg-white);
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background: var(--bg-light);
}

.service-content {
    flex: 1;
    padding: 0 4rem;
}

.service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-features-list {
    margin-bottom: 2rem;
}

.service-features-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    color: var(--text-light);
    position: relative;
}

.service-features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-timing {
    font-style: italic;
    color: var(--text-light);
}

.service-image {
    flex: 1;
    background-color: #dde4ea;
}

.service-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.services-cta {
    padding: 5rem 8%;
    background: var(--primary-color);
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

.contact-hero {
    padding: 6rem 8%;
    background: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.contact-info-split {
    display: flex;
    padding: 6rem 8%;
    background: var(--bg-white);
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #dde4ea;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.contact-approach {
    padding: 6rem 8%;
    background: var(--bg-light);
}

.contact-approach h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.approach-item {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.approach-item p {
    color: var(--text-light);
}

.contact-next-steps {
    padding: 6rem 8%;
    background: var(--bg-white);
}

.steps-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.timeline-steps {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.timeline-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-item p {
    color: var(--text-light);
}

.contact-faq {
    padding: 6rem 8%;
    background: var(--bg-light);
}

.contact-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
}

.contact-cta {
    padding: 5rem 8%;
    background: var(--primary-color);
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

.cta-email-display {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bg-white);
}

.thanks-hero {
    padding: 6rem 8%;
    background: var(--bg-light);
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--bg-white);
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
}

.thanks-details {
    padding: 6rem 8%;
    background: var(--bg-white);
}

.thanks-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.thanks-steps {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.thanks-step {
    flex: 1;
    max-width: 400px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.thanks-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-step p {
    color: var(--text-light);
}

.thanks-info {
    padding: 6rem 8%;
    background: var(--bg-light);
}

.info-split {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.info-content {
    flex: 1;
}

.info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.info-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.info-links {
    margin-top: 2rem;
}

.info-links li {
    padding: 0.8rem 0;
}

.info-links a {
    color: var(--secondary-color);
    font-weight: 500;
}

.info-links a:hover {
    text-decoration: underline;
}

.info-image {
    flex: 1;
    background-color: #dde4ea;
}

.info-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.thanks-contact {
    padding: 5rem 8%;
    background: var(--bg-white);
    text-align: center;
}

.contact-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-email-display {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.contact-hours {
    font-size: 0.95rem;
    color: var(--text-light);
}

.legal-content {
    padding: 6rem 8%;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-update {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-container li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .trust-section,
    .about-story-split,
    .expertise-split,
    .service-detail-split,
    .contact-info-split,
    .info-split {
        flex-direction: column;
    }

    .intro-content-right,
    .story-content,
    .expertise-content,
    .service-content {
        padding-left: 0;
        padding-right: 0;
        margin-top: 2rem;
    }

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

    .features-container,
    .testimonials-grid,
    .thanks-steps {
        flex-direction: column;
        align-items: center;
    }

    .footer-split {
        flex-wrap: wrap;
        gap: 2rem;
    }

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

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

@media (max-width: 768px) {
    .hero-content-left h1,
    .about-hero h1,
    .services-hero h1,
    .contact-hero h1,
    .thanks-content h1,
    .legal-container h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .pricing-split-container {
        flex-direction: column;
    }

    .form-container-split {
        flex-direction: column;
        gap: 2rem;
    }

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