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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #2ecc71;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: var(--bg-light);
}

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

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.intro-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.intro-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.intro-section p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.split-image {
    flex: 1;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.split-content h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
    line-height: 1.3;
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-inline {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 32px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-inline:hover {
    background: #2980b9;
}

.testimonial-inline {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
}

.testimonial-inline blockquote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-inline cite {
    display: block;
    margin-top: 24px;
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

.services-preview {
    padding: 100px 20px;
    background: var(--bg-white);
}

.services-preview h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 60px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 24px;
}

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

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.btn-service {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #1a252f;
}

.story-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.story-section p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

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

.split-content-alt h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.split-content-alt p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.stats-list {
    list-style: none;
}

.stats-list li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.stats-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.split-image-alt {
    flex: 1;
    overflow: hidden;
}

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

.cta-section {
    padding: 100px 20px;
    background: var(--accent-color);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-large {
    display: inline-block;
    padding: 18px 48px;
    background: white;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 6px;
    transition: transform 0.3s;
}

.cta-large:hover {
    transform: scale(1.05);
}

.form-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

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

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

.sticky-cta-btn {
    display: inline-block;
    padding: 16px 32px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: transform 0.3s;
}

.sticky-cta-btn:hover {
    transform: translateY(-4px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.9;
}

.page-hero {
    padding: 100px 20px 60px;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-intro {
    padding: 80px 20px;
    background: white;
}

.about-intro p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.team-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

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

.philosophy-section {
    padding: 100px 20px;
    background: white;
}

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

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.philosophy-list {
    list-style: none;
    margin-top: 24px;
}

.philosophy-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.philosophy-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
}

.journey-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.journey-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-color);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -47px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: 3px solid var(--bg-light);
}

.timeline-year {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 17px;
    line-height: 1.7;
}

.values-section {
    padding: 100px 20px;
    background: white;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.6;
}

.cta-bottom {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

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

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

.services-detail {
    padding: 80px 20px;
    background: white;
}

.service-detail-card {
    max-width: 1000px;
    margin: 0 auto 80px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-header {
    display: flex;
    flex-direction: column;
}

.service-detail-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.service-detail-intro {
    padding: 40px;
    background: white;
}

.service-detail-intro h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.service-tagline {
    font-size: 18px;
    color: var(--text-light);
}

.service-detail-content {
    padding: 40px;
}

.service-detail-content h3 {
    font-size: 26px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-detail-content h3:first-child {
    margin-top: 0;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-detail-content ul {
    margin: 16px 0 16px 24px;
}

.service-detail-content ul li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.cta-service {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 36px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-service:hover {
    background: #c0392b;
}

.comparison-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.comparison-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

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

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.faq-section {
    padding: 80px 20px;
    background: white;
}

.faq-section h2 {
    font-size: 42px;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

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

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-section {
    padding: 80px 20px;
    background: white;
}

.contact-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.contact-info {
    flex: 1;
}

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

.contact-info > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-details {
    margin-bottom: 40px;
}

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

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

.contact-detail-item p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-detail-item a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-founders {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.contact-founders h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-founders p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-image {
    flex: 1;
    min-height: 500px;
}

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

.location-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.location-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 60px;
}

.location-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: white;
    border-radius: 8px;
}

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

.location-card p {
    font-size: 16px;
    line-height: 1.6;
}

.process-section {
    padding: 80px 20px;
    background: white;
}

.process-section h2 {
    font-size: 42px;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.process-steps {
    margin-top: 40px;
}

.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

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

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

.step-content p {
    font-size: 17px;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
}

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

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-service-info {
    margin: 32px auto;
    padding: 24px;
    background: white;
    border-radius: 8px;
    max-width: 600px;
}

.thanks-service-info p {
    font-size: 18px;
    margin: 0;
}

.thanks-next-steps {
    margin: 48px auto;
    max-width: 700px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-next-steps ol {
    margin-left: 24px;
}

.thanks-next-steps li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-contact {
    margin: 32px 0;
    font-size: 17px;
}

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

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

.thanks-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.btn-secondary {
    padding: 14px 32px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #c0392b;
}

.btn-outline {
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
}

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

.legal-page {
    padding: 80px 20px;
    background: white;
}

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

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

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

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

@media (max-width: 968px) {
    .hero-split,
    .split-reverse,
    .split-stats,
    .container-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-left,
    .split-content,
    .split-content-alt {
        padding: 60px 30px;
    }

    .hero-right {
        min-height: 400px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

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

    .services-grid,
    .team-grid,
    .values-grid,
    .locations-grid {
        flex-direction: column;
    }

    .service-card,
    .team-member,
    .value-card,
    .location-card {
        max-width: 100%;
    }

    .form-wrapper {
        padding: 40px 30px;
    }

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

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

    .contact-image {
        min-height: 300px;
    }

    .thanks-cta {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    h2 {
        font-size: 32px;
    }

    .intro-section,
    .services-preview,
    .story-section,
    .form-section {
        padding: 60px 20px;
    }

    .hero-left,
    .split-content,
    .split-content-alt {
        padding: 40px 20px;
    }
}