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

:root {
    --primary-color: #1a3a5c;
    --secondary-color: #2d5f8d;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

ul {
    list-style: none;
}

/* Navigation */
.nav-main {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-nav {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.btn-nav:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-submit {
    width: 100%;
    font-size: 1.05rem;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Trust Section */
.trust-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.trust-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* Split Info Section */
.split-info {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

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

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-content p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dark);
}

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

/* Services Overview */
.services-overview {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-overview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.7;
}

.price-tag {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Testimonial */
.split-testimonial {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.split-testimonial {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
    padding: 2rem;
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.testimonial-visual {
    flex: 1;
}

.testimonial-visual img {
    width: 100%;
    border-radius: 8px;
}

/* Process Section */
.process-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    position: relative;
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #e8eaed;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Form Section */
.split-form-section {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    margin-top: 2rem;
}

.form-benefits li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.form-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.form-container {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

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

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

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.lead-form textarea {
    resize: vertical;
}

/* CTA Sections */
.cta-final,
.cta-about,
.service-cta,
.contact-cta {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col p {
    line-height: 1.8;
    color: #b0b0b0;
}

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

.footer-col a {
    color: #b0b0b0;
}

.footer-col a:hover {
    color: var(--accent-color);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background-color: #d35400;
}

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

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 5rem 2rem;
    text-align: center;
}

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

.hero-content-centered h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content-centered p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* About Page Specific */
.split-about,
.split-team {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

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

.about-text,
.team-content {
    flex: 1;
}

.about-visual,
.team-visual {
    flex: 1;
}

.about-text h2,
.team-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p,
.team-content p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-visual img,
.team-visual img {
    width: 100%;
    border-radius: 8px;
}

.values-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-dark);
    line-height: 1.7;
}

.timeline-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 100px;
}

.timeline-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.timeline-item p {
    color: var(--text-dark);
    line-height: 1.7;
}

.partners-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.partners-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.partners-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.partners-list p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    text-align: center;
}

/* Services Page Specific */
.service-detail {
    padding: 4rem 2rem;
}

.service-detail.alternate {
    background-color: var(--bg-light);
}

.service-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-info h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-info p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.service-features {
    margin: 1.5rem 0;
}

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

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.price-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.financing-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.financing-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.financing-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.financing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.financing-card p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Contact Page */
.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.contact-item a {
    color: var(--accent-color);
}

.contact-note {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-note h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-note p {
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--bg-white);
    padding: 2rem;
}

.contact-reasons {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.contact-reasons h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.reason-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.reason-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.reason-card p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 2rem;
    text-align: center;
    background-color: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.thanks-info {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

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

.next-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.next-step p {
    flex: 1;
    color: var(--text-dark);
    line-height: 1.7;
}

.thanks-contact {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-contact p {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.thanks-contact a {
    color: var(--accent-color);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 2rem;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.legal-container p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-container ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-container li {
    list-style: disc;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--text-dark);
}

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

.legal-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    color: var(--text-dark);
}

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

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

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        width: 100%;
    }

    .hero-split,
    .split-info,
    .trust-content,
    .split-testimonial,
    .split-form-section,
    .split-about,
    .split-team,
    .service-split,
    .contact-split {
        flex-direction: column;
    }

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

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

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

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

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

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

    .cookie-buttons {
        justify-content: center;
    }
}

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

    .page-hero h1,
    .hero-content-centered h1 {
        font-size: 2rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}