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

:root {
    --primary-color: #2C3E50;
    --secondary-color: #E67E22;
    --accent-color: #3498DB;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #ECF0F1;
    --bg-white: #FFFFFF;
    --success-color: #2E7D32;
    --border-color: #BDC3C7;
}

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;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 20px;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

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

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

.btn-cookie-alt {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.navbar {
    background-color: var(--bg-white);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-weight: 500;
    font-size: 16px;
    color: var(--text-dark);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    padding: 60px;
    background-color: var(--bg-light);
}

.split-right {
    overflow: hidden;
}

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

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
}

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

.feature-alternating {
    padding: 80px 40px;
}

.feature-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.feature-visual,
.feature-text {
    flex: 1;
}

.feature-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-text h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.feature-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.stats-split {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

.services-showcase {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.section-header-split {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.header-left h2 {
    font-size: 48px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.header-left p {
    font-size: 18px;
    color: var(--text-light);
}

.link-underline {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 4px;
}

.link-underline:hover {
    color: #D35400;
    border-bottom-color: #D35400;
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
}

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

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

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
}

.btn-select-service:hover {
    background-color: #1A252F;
}

.testimonial-split {
    display: flex;
    min-height: 500px;
}

.testimonial-visual {
    flex: 1;
    background-image: url('https://images.unsplash.com/photo-1556909172-54557c7e4fb7?w=800');
    background-size: cover;
    background-position: center;
}

.testimonial-content {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 24px;
}

blockquote p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
}

cite {
    font-size: 15px;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.process-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 80px;
}

.process-left {
    flex: 0 0 350px;
}

.process-left h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.process-left p {
    font-size: 17px;
    color: var(--text-light);
}

.process-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-full-split {
    background-color: var(--accent-color);
    color: white;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.cta-split-left h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-split-left p {
    font-size: 18px;
    opacity: 0.9;
}

.cta-large {
    padding: 20px 50px;
    background-color: white;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
}

.cta-large:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.promise-alternating {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.promise-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.promise-text,
.promise-visual {
    flex: 1;
}

.promise-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.promise-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.link-arrow {
    display: inline-block;
    margin-top: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 16px;
}

.link-arrow:hover {
    color: #D35400;
}

.link-arrow::after {
    content: ' →';
}

.promise-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: var(--text-light);
    background: transparent;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

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

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

.form-group input[readonly] {
    background-color: var(--bg-light);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
}

.btn-submit:hover {
    background-color: #D35400;
}

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

.sticky-cta-btn {
    padding: 18px 32px;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(230, 126, 34, 0.4);
}

.sticky-cta-btn:hover {
    background-color: #D35400;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.5);
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-column a {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.story-alternating {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.story-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.story-visual {
    flex: 1;
}

.story-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.values-split {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

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

.section-header-centered h2 {
    font-size: 48px;
    color: var(--primary-color);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.team-alternating {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.team-intro-split {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
}

.intro-left {
    flex: 1;
}

.intro-left h2 {
    font-size: 48px;
    color: var(--primary-color);
}

.intro-right {
    flex: 1;
}

.intro-right p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.team-row {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.team-member-visual {
    flex: 0 0 300px;
}

.team-member-visual img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.team-member-info {
    flex: 1;
}

.team-member-info h3 {
    font-size: 28px;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.role {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-member-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.commitment-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 80px;
    background-color: var(--bg-white);
}

.commitment-left {
    flex: 0 0 350px;
}

.commitment-left h2 {
    font-size: 44px;
    line-height: 1.2;
    color: var(--primary-color);
}

.commitment-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.commitment-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.commitment-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-centered {
    padding: 100px 40px;
    text-align: center;
    background-color: var(--bg-light);
}

.cta-centered h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-centered p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.services-detail-alternating {
    padding: 60px 40px 100px;
}

.service-detail-row {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-visual {
    flex: 1;
}

.service-detail-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-detail-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    padding: 8px 0 8px 28px;
    position: relative;
}

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

.pricing-transparency {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.transparency-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.transparency-left {
    flex: 0 0 400px;
}

.transparency-left h2 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary-color);
}

.transparency-right {
    flex: 1;
}

.transparency-right p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.transparency-right ul {
    list-style-position: inside;
    margin-bottom: 16px;
}

.transparency-right li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    padding: 4px 0;
}

.contact-content-split {
    display: flex;
    min-height: 600px;
}

.contact-info-side {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.contact-info-side h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.contact-detail h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-detail a {
    color: var(--secondary-color);
}

.contact-detail a:hover {
    color: #D35400;
}

.contact-visual-side {
    flex: 1;
    overflow: hidden;
}

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

.faq-alternating {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.faq-row {
    max-width: 1000px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
}

.faq-question-side {
    flex: 0 0 300px;
}

.faq-question-side h3 {
    font-size: 24px;
    color: var(--primary-color);
}

.faq-answer-side {
    flex: 1;
}

.faq-answer-side p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

.thanks-hero {
    padding: 100px 40px;
    text-align: center;
    background-color: var(--bg-light);
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.selected-service-info {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
}

.selected-service-info p {
    font-size: 16px;
    color: var(--text-dark);
}

.next-steps-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 80px;
}

.next-steps-left {
    flex: 0 0 300px;
}

.next-steps-left h2 {
    font-size: 42px;
    color: var(--primary-color);
}

.next-steps-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.explore-more {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

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

.explore-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.explore-content > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.explore-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.link-card {
    flex: 1;
    max-width: 400px;
    padding: 32px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.link-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.link-card p {
    font-size: 15px;
    color: var(--text-light);
}

.legal-hero {
    padding: 80px 40px;
    text-align: center;
    background-color: var(--bg-light);
}

.legal-hero h1 {
    font-size: 48px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 15px;
    color: var(--text-light);
}

.legal-content {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

.legal-text h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: var(--primary-color);
}

.legal-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-text ul {
    margin: 16px 0 16px 20px;
}

.legal-text li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

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

.legal-text a:hover {
    color: #D35400;
}

.legal-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

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

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

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

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px 40px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .feature-row,
    .story-row,
    .promise-row,
    .testimonial-split,
    .contact-content-split {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 40px 20px;
    }

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

    .stats-split {
        gap: 40px;
    }

    .section-header-split,
    .team-intro-split,
    .transparency-split,
    .faq-row,
    .process-split,
    .commitment-split,
    .next-steps-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .cta-full-split {
        flex-direction: column;
        gap: 40px;
    }

    .team-row {
        flex-direction: column;
        gap: 30px;
    }

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

    .team-member-visual {
        flex: 1;
    }

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

    .explore-links {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

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

    .sticky-cta-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .modal-content {
        padding: 30px 20px;
    }

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

    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 20px;
    }

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

    .feature-text h2,
    .story-text h2,
    .promise-text h2 {
        font-size: 32px;
    }

    .section-header-centered h2 {
        font-size: 36px;
    }

    .cta-centered h2,
    .thanks-content h1 {
        font-size: 32px;
    }

    .service-price {
        font-size: 24px;
    }
}