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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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: var(--primary-color);
}

ul {
    list-style: none;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

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

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

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

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

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.hero-right {
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #d97706;
    transform: translateY(-2px);
}

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

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

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
}

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

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

.split-container {
    display: flex;
    margin-bottom: 0;
}

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

.split-content,
.split-image {
    flex: 1;
}

.split-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: var(--bg-white);
}

.split-image {
    overflow: hidden;
}

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

.service-card {
    max-width: 480px;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

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

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

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

.cta-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

.why-us h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

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

.feature-box {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

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

.feature-box p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.cta-band {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-band h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-band p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

.additional-services h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

.service-list {
    max-width: 1000px;
    margin: 0 auto;
}

.service-item-split {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
}

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

.service-info {
    flex: 2;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    border-radius: 8px;
    width: 100%;
}

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

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

.price-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
}

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

.booking-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 48px;
}

.booking-form {
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

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

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

.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: 15px;
    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);
}

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

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

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

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

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col ul li a {
    color: #9ca3af;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

.page-hero {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero-lead {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 0;
}

.about-story .split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

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

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

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

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

.value-card {
    flex: 1;
    min-width: 240px;
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.team-section {
    padding: 80px 20px;
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.team-member {
    flex: 1;
    min-width: 280px;
}

.member-info h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

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

.numbers-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
}

.numbers-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

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

.stat-box {
    text-align: center;
    min-width: 200px;
}

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

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

.approach-section {
    padding: 80px 0;
}

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

.approach-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.approach-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.certifications h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.certifications > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cert-list {
    max-width: 700px;
    margin: 0 auto;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    margin-bottom: 12px;
    border-radius: 8px;
}

.cert-icon {
    font-size: 24px;
    color: var(--success-color);
    font-weight: 700;
}

.cert-text {
    color: var(--text-dark);
    font-size: 16px;
}

.services-main {
    background: var(--bg-light);
}

.service-detail {
    max-width: 540px;
}

.service-icon-large {
    font-size: 64px;
    margin-bottom: 20px;
}

.service-detail h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

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

.service-includes {
    margin-bottom: 28px;
}

.service-includes h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-light);
}

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

.price-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
}

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

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

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

.additional-services-page h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.addon-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.addon-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.addon-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.addon-content {
    padding: 24px;
}

.addon-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

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

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

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

.packages-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.package-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.package-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.package-includes {
    margin-bottom: 24px;
}

.package-includes li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}

.package-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.package-pricing {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.old-price {
    font-size: 24px;
    color: var(--text-light);
    text-decoration: line-through;
}

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

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

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

.faq-item {
    margin-bottom: 32px;
}

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

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

.contact-main {
    padding: 80px 20px;
}

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

.contact-info {
    flex: 1;
}

.contact-map-placeholder {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-intro {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.info-block p a {
    color: var(--primary-color);
    font-weight: 600;
}

.note {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

.map-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 16px;
    text-align: center;
}

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

.service-areas h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
}

.area-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 24px;
    border-radius: 12px;
}

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

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

.how-it-works {
    padding: 80px 20px;
}

.how-it-works h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

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

.step-card {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 56px;
    height: 56px;
    line-height: 56px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.quick-questions h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

.quick-faq {
    max-width: 700px;
    margin: 0 auto;
}

.quick-item {
    background: white;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.quick-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.quick-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.thanks-page {
    padding: 100px 20px;
    min-height: 60vh;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    font-size: 48px;
    margin: 0 auto 32px;
    text-align: center;
}

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

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

.service-selected {
    font-size: 16px;
    color: var(--primary-color);
    background: #eff6ff;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.next-steps {
    margin: 48px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.thanks-extra {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

.thanks-extra h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.thanks-extra p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

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

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
}

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

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

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

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

.legal-page ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 16px;
}

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

.legal-page strong {
    color: var(--text-dark);
}

.legal-footer {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.legal-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.gdpr-table th,
.cookie-table th {
    background: var(--bg-light);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

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

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

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

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

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

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

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }

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

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

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

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

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

    .package-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

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

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

    .intro-section h2,
    .why-us h2,
    .testimonials-section h2,
    .cta-band h2,
    .additional-services h2 {
        font-size: 28px;
    }
}
