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

:root {
    --primary-color: #2563eb;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-color: #1e293b;
    --light-gray: #f1f5f9;
    --medium-gray: #cbd5e1;
    --dark-gray: #475569;
    --white: #ffffff;
    --success: #10b981;
    --error: #ef4444;
}

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

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

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

ul {
    list-style-position: inside;
}

.navbar {
    background-color: var(--white);
    padding: 1.2rem 0;
    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: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

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

.hero-split {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

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

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.cta-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

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

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

.cta-link {
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 1.5rem;
}

.cta-link:hover {
    text-decoration: underline;
}

.value-split {
    padding: 6rem 0;
}

.value-split.reverse .split-container {
    flex-direction: row-reverse;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    line-height: 1.3;
}

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

.stats-section {
    padding: 5rem 0;
    background-color: var(--secondary-color);
    color: var(--white);
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: space-around;
}

.stat-card {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-card h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.services-showcase {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.services-split-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-split {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
}

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

.service-visual {
    flex: 1;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-split:hover .service-visual img {
    transform: scale(1.05);
}

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.select-service {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.testimonial-split {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonial-split blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-split cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

.process-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.process-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--secondary-color);
}

.process-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
}

.process-step {
    flex: 1;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.cta-split-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e3a5f 100%);
    color: var(--white);
}

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

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-left p {
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-right {
    flex: 1;
}

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

.contact-form-inline input,
.contact-form-inline select,
.contact-form-inline textarea {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form-inline textarea {
    resize: vertical;
}

.btn-submit {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

.trust-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.trust-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.trust-content p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background-color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 0;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-section a {
    display: block;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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;
}

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

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero-split {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.story-split {
    padding: 5rem 0;
    background-color: var(--white);
}

.values-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

.team-split {
    padding: 5rem 0;
}

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

.philosophy-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.philosophy-content h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.philosophy-content > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.philosophy-pillars {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.pillar {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.pillar h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pillar p {
    color: var(--dark-gray);
    line-height: 1.7;
}

.achievements-split {
    padding: 5rem 0;
    background-color: var(--white);
}

.achievements-list {
    list-style: none;
    padding: 0;
}

.achievements-list li {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.7;
    padding-left: 2rem;
    position: relative;
}

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

.cta-about {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: var(--white);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-split {
    margin-bottom: 5rem;
}

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

.detail-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.detail-left {
    flex: 1;
}

.detail-left img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.detail-right {
    flex: 1;
}

.detail-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.detail-right ul {
    margin: 1.5rem 0;
}

.detail-right ul li {
    margin-bottom: 0.8rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.service-price {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.95rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.why-choose-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.why-choose-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.why-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

.cta-services {
    padding: 5rem 0;
    background-color: var(--secondary-color);
    color: var(--white);
}

.contact-hero-split {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: var(--white);
}

.contact-hero-split .hero-left h1 {
    color: var(--white);
}

.contact-hero-split .hero-left p {
    color: rgba(255,255,255,0.9);
}

.contact-info-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
}

.contact-details {
    flex: 1;
}

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

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

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

.contact-item p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.cta-contact {
    padding: 5rem 0;
    background-color: var(--white);
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.cta-contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.thanks-section {
    padding: 6rem 0;
    text-align: center;
}

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

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

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

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

.service-selected {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.thanks-next-steps {
    margin: 4rem 0;
}

.thanks-next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.step {
    flex: 1;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.step-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

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

.thanks-cta {
    margin-top: 3rem;
}

.thanks-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.thanks-testimonial {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.testimonial-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-box blockquote {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-box p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-box cite {
    font-size: 1.1rem;
    font-style: normal;
    color: var(--dark-gray);
}

.legal-page {
    padding: 4rem 0;
    background-color: var(--white);
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.update-date {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.8rem;
    color: var(--text-color);
}

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

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

.legal-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1d4ed8;
}

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

.cookie-table thead {
    background-color: var(--light-gray);
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--medium-gray);
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--medium-gray);
    color: var(--dark-gray);
}

@media (max-width: 1024px) {
    .hero-content,
    .split-container,
    .cta-split-content,
    .contact-split,
    .detail-content {
        flex-direction: column;
        gap: 3rem;
    }

    .value-split.reverse .split-container,
    .team-split.reverse .split-container,
    .service-detail-split.reverse .detail-content {
        flex-direction: column;
    }

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

    .process-split,
    .steps-grid {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.95rem;
    }

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

    .hero-left p {
        font-size: 1.1rem;
    }

    .split-text h2,
    .section-header h2,
    .process-section h2,
    .values-section h2,
    .philosophy-content h2,
    .why-choose-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }

    .stat-card h3 {
        font-size: 2.5rem;
    }

    .cta-split-content {
        gap: 2rem;
    }

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

    .sticky-btn {
        font-size: 0.95rem;
        padding: 0.9rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-split {
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero-left h1 {
        font-size: 1.7rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
}