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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2c7ac4;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #757575;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.btn-cookie {
    background-color: var(--primary-color);
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: capitalize;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

.hero-section {
    background: linear-gradient(135deg, #1a5490 0%, #2c7ac4 100%);
    padding: 120px 20px 100px;
    color: #ffffff;
}

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #ffffff;
}

.btn-primary-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary-large:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

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

.trust-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

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

.split-left,
.split-right {
    flex: 1;
}

.split-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.image-placeholder {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

.insight-section {
    background: #f0f4f8;
    padding: 80px 20px;
}

.insight-box {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.insight-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.insight-box p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

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

.story-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

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

.story-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
}

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

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

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

.services-preview h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.btn-service {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.cta-section {
    background: linear-gradient(135deg, #2c7ac4 0%, #1a5490 100%);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--text-dark);
}

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

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.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: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

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

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

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

.final-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

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

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

.footer-column a {
    color: #cccccc;
    font-size: 14px;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 14px;
    color: #999999;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #e55a2b;
    transform: scale(1.05);
    color: #ffffff;
}

.page-header {
    background: linear-gradient(135deg, #1a5490 0%, #2c7ac4 100%);
    padding: 80px 20px 60px;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

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

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
}

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

.story-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

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

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    padding: 30px;
    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;
    color: var(--text-light);
}

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

.team-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

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

.why-us-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.why-us-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

.benefits-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-list li {
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 18px;
    color: var(--text-light);
}

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

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

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

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

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

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

.service-features h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

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

.service-price-box {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.price-note {
    font-size: 14px;
    color: var(--text-muted);
}

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

.pricing-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

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

.pricing-notes {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 8px;
}

.pricing-notes h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.pricing-notes ul {
    list-style: none;
}

.pricing-notes li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

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

.contact-content {
    padding: 80px 20px;
    background: var(--bg-white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info-box,
.contact-cta-box {
    flex: 1;
    min-width: 300px;
}

.contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

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

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

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

.emergency-note {
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 10px;
}

.contact-cta-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.contact-cta-box h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-cta-box p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 24px;
}

.contact-features {
    margin-top: 30px;
}

.contact-features h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-features ul {
    list-style: none;
}

.contact-features li {
    padding: 6px 0 6px 25px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

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

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

.service-area h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

.service-area > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.area-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.area-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 8px;
}

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

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

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

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.thanks-info {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    counter-increment: step-counter;
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.next-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.service-info-box {
    margin: 30px auto;
    padding: 20px;
    background: #e8f4f8;
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
    max-width: 600px;
    display: none;
}

.service-info-box.active {
    display: block;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.emergency-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #fff3cd;
    border-radius: 8px;
    text-align: center;
}

.emergency-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.emergency-box p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.emergency-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.legal-page {
    padding: 80px 20px;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

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

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

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

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

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

@media (min-width: 768px) {
    .container-split {
        flex-direction: row;
    }

    .split-left,
    .split-right {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .cookie-buttons {
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        display: none;
    }

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

    .hero-text h1 {
        font-size: 32px;
    }

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

    .split-left h2 {
        font-size: 28px;
    }

    .split-left p {
        font-size: 16px;
    }

    .story-section h2,
    .values-section h2,
    .team-section h2,
    .services-preview h2 {
        font-size: 28px;
    }

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

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

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

    .story-stats {
        flex-direction: column;
        align-items: center;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .sticky-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .page-header h1 {
        font-size: 32px;
    }

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

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 26px;
    }

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

    .contact-form {
        padding: 24px;
    }

    .insight-box {
        padding: 30px 20px;
    }
}