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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #e94560;
    --accent-color: #0f3460;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray-light: #e0e0e0;
    --gray-medium: #757575;
    --success: #2ecc71;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

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

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

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

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

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

.main-nav {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: var(--gray-medium);
    padding: 4px 12px;
    background-color: var(--light-bg);
    border-radius: 4px;
}

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

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

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

.hero-visual {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(15,52,96,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.hero-overlay h1 {
    color: var(--white);
    font-size: 58px;
    font-weight: 800;
    max-width: 900px;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-overlay p {
    color: var(--white);
    font-size: 22px;
    max-width: 700px;
    font-weight: 300;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 30px;
}

.content-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
}

.story-intro {
    background-color: var(--light-bg);
}

.story-intro h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.visual-break {
    background-color: var(--white);
}

.split-visual {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
}

.visual-left {
    flex: 1;
    background-color: var(--gray-light);
}

.visual-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.content-right {
    flex: 1;
    padding: 20px;
}

.content-right h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.problem-amplify {
    background-color: var(--accent-color);
    color: var(--white);
}

.problem-amplify h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--white);
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 32px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.problem-card h4 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--white);
}

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

.trust-builder {
    background-color: var(--white);
}

.trust-builder h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.trust-builder p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.trust-builder img {
    width: 100%;
    height: auto;
    margin: 32px 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background-color: var(--gray-light);
}

.testimonials-inline {
    background-color: var(--light-bg);
}

.testimonials-inline h3 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonial-flow {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    padding: 30px;
    background-color: var(--white);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 14px;
    color: var(--text-color);
}

.testimonial cite {
    font-size: 14px;
    font-style: normal;
    color: var(--gray-medium);
    font-weight: 600;
}

.services-reveal {
    background-color: var(--white);
}

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

.section-intro {
    text-align: center;
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--gray-medium);
}

.services-visual-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--gray-light);
}

.service-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.service-details {
    flex: 1;
}

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

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

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

.select-service-btn {
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #d63850;
    transform: scale(1.02);
}

.select-service-btn:active {
    transform: scale(0.98);
}

.form-section {
    background-color: var(--light-bg);
    padding: 80px 30px;
}

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

.selected-service-display {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    color: var(--accent-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    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(--secondary-color);
}

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

.submit-btn:hover:not(:disabled) {
    background-color: #27ae60;
    transform: scale(1.02);
}

.submit-btn:disabled {
    background-color: var(--gray-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.final-trust {
    background-color: var(--white);
}

.final-trust h3 {
    font-size: 32px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

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

.benefits-list li {
    padding: 14px 0 14px 40px;
    font-size: 18px;
    position: relative;
    line-height: 1.6;
}

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

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

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 40px auto 20px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

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

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

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

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

.page-hero p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.services-detail {
    background-color: var(--white);
}

.service-detailed-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detailed-card.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: var(--gray-light);
}

.service-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.service-info p {
    font-size: 17px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-info h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--accent-color);
}

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

.service-info ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.service-info ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--white);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--white);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.about-hero {
    position: relative;
    padding: 0;
    height: 400px;
    overflow: hidden;
    background-color: var(--accent-color);
}

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

.about-story {
    background-color: var(--white);
}

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

.about-story p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.philosophy-section {
    background-color: var(--light-bg);
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
}

.content-left {
    flex: 1;
}

.content-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.content-left p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.image-right {
    flex: 1;
    background-color: var(--gray-light);
}

.image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.approach-section {
    background-color: var(--white);
}

.approach-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.approach-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    padding: 32px;
    background-color: var(--light-bg);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-6px);
}

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--accent-color);
}

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

.team-section {
    background-color: var(--light-bg);
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.team-section p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.team-section img {
    width: 100%;
    height: auto;
    margin: 32px 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background-color: var(--gray-light);
}

.values-section {
    background-color: var(--white);
}

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-item {
    padding: 28px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
}

.mission-section {
    background-color: var(--accent-color);
    color: var(--white);
}

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--white);
}

.mission-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-info-section {
    background-color: var(--white);
}

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

.contact-details {
    flex: 1;
}

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

.contact-block h2 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
}

.email-static {
    font-weight: 600;
    color: var(--accent-color);
}

.email-note,
.note {
    font-size: 14px;
    color: var(--gray-medium);
    margin-top: 8px;
}

.contact-visual {
    flex: 1;
    background-color: var(--gray-light);
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 24px;
}

.location-note {
    padding: 24px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

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

.location-note p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.faq-section {
    background-color: var(--light-bg);
}

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

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

.faq-item {
    padding: 24px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
}

.thanks-hero {
    background: linear-gradient(135deg, var(--success) 0%, #27ae60 100%);
    color: var(--white);
    padding: 80px 30px;
    text-align: center;
}

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

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: inline-block;
    width: 120px;
    height: 120px;
    background-color: var(--white);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

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

.thanks-hero .lead {
    font-size: 22px;
}

.thanks-details {
    background-color: var(--white);
}

.thanks-details h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--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: 22px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

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

.thanks-info {
    background-color: var(--light-bg);
}

.info-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-block {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 28px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
}

.selected-service-info {
    background-color: var(--white);
}

.selected-service-info h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.service-summary {
    padding: 32px;
    background-color: var(--light-bg);
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.service-name-display {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-price-display {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-note {
    font-size: 15px;
    color: var(--gray-medium);
    text-align: center;
}

.additional-info {
    background-color: var(--light-bg);
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.useful-info h4 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 24px;
    color: var(--accent-color);
}

.useful-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background-color: var(--accent-color);
    color: var(--white);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
}

.legal-page {
    background-color: var(--white);
}

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

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

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

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

.legal-page h4 {
    font-size: 19px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

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

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

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.cookie-table {
    overflow-x: auto;
    margin: 24px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--light-bg);
}

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

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

.cookie-table td {
    font-size: 15px;
}

.form-template {
    background-color: var(--light-bg);
    padding: 24px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    margin: 24px 0;
}

.form-template p {
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 38px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .split-visual,
    .split-content,
    .contact-layout,
    .service-card {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .content-narrow,
    .content-wide {
        padding: 50px 20px;
    }

    .cookie-content {
        flex-direction: column;
    }

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

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

    .success-icon {
        width: 100px;
        height: 100px;
        font-size: 60px;
    }
}