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

:root {
    --primary-color: #1a4d8f;
    --secondary-color: #2d6cb5;
    --accent-color: #f39c12;
    --dark-bg: #0f1419;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 38px;
    z-index: 999;
    padding: 15px 0;
}

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

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

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

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

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

.hero-visual-overlay {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 143, 0.9) 0%, rgba(15, 20, 25, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-overlay-content h1 {
    font-size: 52px;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    line-height: 1.5;
}

.story-narrow {
    max-width: 720px;
    margin: 80px auto;
    padding: 0 20px;
}

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

.story-content p {
    font-size: 19px;
    margin-bottom: 22px;
    color: #3a3a3a;
    line-height: 1.7;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 35px 0;
    border-radius: 8px;
    object-fit: cover;
}

.problem-amplification {
    background-color: #f4f6f8;
    padding: 90px 20px;
}

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

.block-left {
    flex: 1;
    padding-right: 30px;
}

.block-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.block-left p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #3a3a3a;
}

.insight-list {
    list-style: none;
    margin-top: 30px;
}

.insight-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.insight-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 22px;
    font-weight: bold;
}

.block-right {
    flex: 0 0 450px;
}

.block-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.insight-reveal {
    padding: 90px 20px;
    background-color: #ffffff;
}

.centered-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.centered-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.large-text {
    font-size: 22px;
    line-height: 1.6;
    color: #3a3a3a;
}

.insight-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-left: 4px solid var(--accent-color);
}

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

.insight-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #3a3a3a;
}

.trust-building {
    padding: 90px 20px;
    background-color: var(--dark-bg);
}

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

.content-left {
    flex: 1;
}

.content-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.content-left p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.inline-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.inline-cta:hover {
    background-color: #e08e0b;
    transform: translateY(-2px);
}

.content-right {
    flex: 0 0 500px;
}

.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.testimonials-flow {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.testimonials-flow h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quote {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 20px;
    font-style: italic;
}

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

.benefits-reveal {
    padding: 90px 20px;
    background-color: #ffffff;
}

.benefits-intro {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.benefits-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.benefits-intro p {
    font-size: 19px;
    line-height: 1.6;
    color: #3a3a3a;
}

.services-stacked {
    max-width: 1100px;
    margin: 0 auto;
}

.service-block {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: flex-start;
}

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

.service-visual {
    flex: 0 0 400px;
}

.service-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-details {
    flex: 1;
}

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

.service-details p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #3a3a3a;
}

.service-details ul {
    list-style: none;
    margin: 20px 0;
}

.service-details li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
}

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

.service-cta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
}

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

.cta-button {
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.form-container > p {
    text-align: center;
    margin-bottom: 35px;
    font-size: 17px;
    color: var(--text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.selected-service-display {
    padding: 15px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
}

.submit-button {
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #e08e0b;
    transform: translateY(-2px);
}

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

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

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

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

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

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

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

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

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 20, 25, 0.98);
    color: var(--text-light);
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    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: 15px;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cookie-accept {
    background-color: var(--success-color);
    color: var(--text-light);
}

.cookie-accept:hover {
    background-color: #218838;
    transform: translateY(-1px);
}

.cookie-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

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

.hero-content-centered h1 {
    font-size: 48px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

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

.content-narrow {
    max-width: 720px;
    margin: 0 auto 60px;
}

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

.content-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #3a3a3a;
}

.about-image-section {
    max-width: 1400px;
    margin: 60px auto;
}

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

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

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #3a3a3a;
}

.split-image {
    flex: 0 0 450px;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

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

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.team-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.content-centered {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.content-centered h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-centered p {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.team-image {
    max-width: 1400px;
    margin: 0 auto;
}

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

.mission-section {
    padding: 90px 20px;
    background-color: var(--light-bg);
}

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

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

.mission-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #3a3a3a;
}

.services-overview {
    padding: 80px 20px;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

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

.intro-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3a3a;
}

.services-detailed {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card-detailed {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-card-detailed.featured {
    border: 2px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
}

.service-header {
    background-color: var(--light-bg);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h3 {
    font-size: 26px;
    color: var(--primary-color);
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--light-bg);
}

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

.service-description {
    padding: 35px 30px;
}

.service-description > p {
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #3a3a3a;
}

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

.service-description ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-description li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
}

.service-description li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
}

.service-action {
    padding: 0 30px 30px;
    text-align: center;
}

.comparison-section {
    padding: 60px 20px;
    background-color: var(--light-bg);
    text-align: center;
}

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

.comparison-note {
    max-width: 700px;
    margin: 0 auto;
}

.comparison-note p {
    font-size: 17px;
    color: var(--text-muted);
}

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

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

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

.contact-info-block > p {
    font-size: 17px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #3a3a3a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

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

.detail-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
}

.note {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

.additional-info {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 6px;
}

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

.additional-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 12px;
}

.contact-visual {
    flex: 0 0 500px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #3a3a3a;
}

.faq-section {
    padding: 70px 20px;
    background-color: var(--light-bg);
}

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

.faq-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
}

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

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #3a3a3a;
}

.thanks-hero {
    background: linear-gradient(135deg, var(--success-color) 0%, #20814c 100%);
    padding: 100px 20px;
    text-align: center;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--text-light);
    margin: 0 auto 30px;
}

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

.thanks-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.thanks-details {
    padding: 80px 20px;
    background-color: #ffffff;
}

.details-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.steps-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
}

.selected-service-info {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 40px;
}

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

.selected-service-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.thanks-note {
    background-color: #e7f3ff;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

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

.thanks-note p {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
}

.thanks-additional {
    padding: 70px 20px;
    background-color: var(--light-bg);
}

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

.additional-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.additional-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.additional-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.link-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.link-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

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

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

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.legal-container ul {
    margin: 15px 0 15px 30px;
}

.legal-container li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
}

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

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

    .offset-block,
    .split-content,
    .content-split,
    .contact-grid {
        flex-direction: column;
    }

    .block-right,
    .content-right,
    .split-image,
    .contact-visual {
        flex: 1;
    }

    .service-block {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

    .service-visual {
        flex: 1;
    }

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

    .story-content h2,
    .block-left h2,
    .content-left h2 {
        font-size: 28px;
    }

    .benefits-intro h2,
    .testimonials-flow h2 {
        font-size: 32px;
    }
}
