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

:root {
    --primary-color: #1a5490;
    --secondary-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --success: #2ecc71;
    --border-color: #e1e4e8;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

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

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

.main-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.65;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 540px;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.cta-primary:hover {
    background: #134172;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

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

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

.split-content {
    flex: 1;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--text-dark);
    font-weight: 700;
}

.split-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.75;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
}

.link-arrow:after {
    content: '→';
    margin-left: 8px;
    transition: margin 0.3s;
}

.link-arrow:hover:after {
    margin-left: 14px;
}

.services-showcase {
    padding: 100px 0;
    background: var(--white);
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

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

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

.service-card-modern {
    flex: 1 1 calc(50% - 18px);
    display: flex;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    min-width: 500px;
}

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

.service-image {
    flex: 0 0 240px;
}

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

.service-details {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-power {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.service-details p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
}

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

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

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

.btn-service {
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-service:hover {
    background: #134172;
    transform: translateY(-1px);
}

.process-split {
    display: flex;
    background: var(--bg-light);
}

.process-steps {
    margin: 30px 0 40px;
}

.step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.step-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.btn-outline {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    background: transparent;
}

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

.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-layout {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

.cta-fullwidth {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3a5f 100%);
    text-align: center;
}

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

.cta-content-centered h2 {
    font-size: 44px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-centered p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-large {
    padding: 18px 50px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-large:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.main-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
}

.footer-layout {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 40px 20px;
}

.form-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    position: relative;
    margin: auto;
}

.form-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

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

.form-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    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(--primary-color);
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #27ae60;
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3a5f 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 18px;
    font-weight: 700;
}

.page-hero .lead {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.content-split {
    display: flex;
    padding: 80px 0;
}

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

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

.stats-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
}

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

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 18px);
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    min-width: 300px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

.team-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.team-stats {
    display: flex;
    gap: 40px;
}

.team-item {
    flex: 1;
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.team-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.cta-section-simple {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-section-simple h2 {
    font-size: 40px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.services-detailed {
    padding: 60px 0;
}

.service-full {
    display: flex;
    margin-bottom: 80px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

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

.service-content-area {
    flex: 1.2;
    padding: 50px;
}

.service-image-area {
    flex: 1;
}

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

.service-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-content-area h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-lead {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-description h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-description ul {
    list-style: none;
    padding-left: 0;
}

.service-description ul li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-light);
}

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

.service-pricing-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.price-row:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.price-row span {
    font-size: 15px;
    color: var(--text-light);
}

.price-row strong {
    font-size: 19px;
    color: var(--primary-color);
}

.additional-services {
    padding: 80px 0;
    background: var(--bg-light);
}

.additional-services h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.addon-card {
    flex: 1;
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
}

.addon-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.addon-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.addon-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-outline-small {
    padding: 10px 24px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

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

.small-text {
    font-size: 13px;
    margin-top: 5px;
}

.highlight-text {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-form-area {
    flex: 1;
    background: var(--bg-light);
    padding: 45px;
    border-radius: 10px;
}

.contact-form-area h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-checkbox {
    margin: 20px 0;
}

.form-checkbox input {
    margin-right: 8px;
}

.form-checkbox label {
    font-size: 13px;
    color: var(--text-light);
}

.form-checkbox a {
    color: var(--primary-color);
}

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

.btn-submit-large:hover {
    background: #134172;
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 10px;
    text-align: center;
}

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

.map-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 700;
}

.map-intro {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
}

.map-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 6px;
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.emergency-cta {
    padding: 60px 0;
    background: var(--white);
}

.emergency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-radius: 10px;
    border: 2px solid #ffcccc;
}

.emergency-box h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

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

.emergency-email {
    font-size: 20px;
}

.emergency-email a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

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

.thanks-section {
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

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

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

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.thanks-details {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 35px;
    text-align: left;
}

.thanks-details p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

.service-selected {
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 35px;
}

.thanks-next-steps h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps ol li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-urgent {
    background: #fff5f5;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 35px;
}

.thanks-urgent p {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.thanks-urgent a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #134172;
}

.legal-page {
    padding: 60px 0 80px;
}

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

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

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

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

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

.legal-page ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

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

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

.cookies-table thead {
    background: var(--bg-light);
}

.cookies-table th {
    text-align: left;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookies-table td {
    padding: 12px 15px;
    font-size: 14px;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 40px;
    }

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

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

    .info-split,
    .content-split,
    .process-split {
        flex-direction: column;
    }

    .info-split.reverse,
    .content-split.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 50px 30px;
    }

    .service-card-modern {
        flex-direction: column;
        min-width: auto;
    }

    .service-image {
        flex: 0 0 200px;
    }

    .testimonials-layout {
        flex-direction: column;
    }

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

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

    .team-stats {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .footer-layout {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 20px;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

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

    .section-header-centered h2,
    .values-section h2,
    .testimonials-section h2 {
        font-size: 32px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .value-card {
        min-width: auto;
    }

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .form-container {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .hero-left {
        padding: 40px 20px;
    }

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

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

    .split-content {
        padding: 40px 20px;
    }

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

    .service-details {
        padding: 25px;
    }

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

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