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

:root {
    --primary-color: #2c5f6f;
    --secondary-color: #4a9db5;
    --accent-color: #7bc7d8;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2d8659;
    --warning-color: #c77a2f;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background-color: #24684a;
}

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

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

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

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

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

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    padding: 6px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.hero-magazine {
    position: relative;
    height: 600px;
    background-color: var(--text-dark);
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-overlay p {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.magazine-layout {
    background-color: var(--bg-white);
}

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

.content-wrapper-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.intro-section {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.intro-columns {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-lead {
    flex: 2;
}

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

.intro-lead p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
}

.intro-sidebar {
    flex: 1;
}

.highlight-box {
    background-color: var(--bg-white);
    padding: 30px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.highlight-box h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    padding: 8px 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 24px;
}

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

.featured-reviews {
    padding: 100px 0;
}

.section-title {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: 700;
    text-align: left;
}

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

.review-card-large {
    flex: 1 1 100%;
    display: flex;
    gap: 40px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.review-card-large:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.review-card-large img {
    width: 50%;
    object-fit: cover;
}

.review-card-large .review-content {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card-medium {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.review-card-medium:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.review-card-medium .review-content {
    padding: 30px;
}

.review-rating {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--warning-color);
    margin-bottom: 12px;
}

.review-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.review-content p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-block;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
}

.methodology-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

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

.methodology-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.criteria-columns {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.criteria-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 32px;
    border-top: 3px solid var(--secondary-color);
}

.criteria-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

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

.comparison-section {
    padding: 100px 0;
}

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

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: white;
}

.comparison-table th {
    padding: 18px 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
}

.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-medium);
}

.comparison-table tbody tr:hover {
    background-color: var(--bg-light);
}

.testimonials-inline {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.testimonials-inline h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background-color: var(--bg-white);
    padding: 40px 50px;
    border-left: 5px solid var(--secondary-color);
    font-style: italic;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

.testimonial cite {
    font-style: normal;
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.form-section {
    padding: 100px 0;
}

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

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
}

.form-container {
    flex: 1;
}

.main-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

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

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-medium);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

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

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

.scientific-basis {
    padding: 100px 0;
}

.scientific-basis h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

.scientific-basis p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.cta-final {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.cta-box {
    text-align: center;
    padding: 60px 40px;
}

.cta-box h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-block;
    padding: 18px 48px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

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

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

.footer-col a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    background-color: rgba(255,255,255,0.05);
    padding: 24px;
    margin-bottom: 30px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
}

.footer-references {
    margin-bottom: 30px;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-references ol {
    padding-left: 20px;
    font-size: 13px;
    line-height: 1.7;
}

.footer-references li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.75);
}

.footer-references a {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-references a:hover {
    color: 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.6);
}

.about-hero,
.services-hero,
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.lead-text,
.intro-text {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
}

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

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.story-content {
    flex: 1;
}

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

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.methodology-detail {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.methodology-detail h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.methodology-detail > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 50px;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.method-step {
    background-color: var(--bg-white);
    padding: 32px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.method-step h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.method-step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.independence {
    padding: 100px 0;
}

.independence-box {
    background-color: var(--bg-light);
    padding: 60px;
    border-radius: 8px;
}

.independence-box h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.independence-box p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.team-values {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.team-values h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 700;
}

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

.values-list li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

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

.values-list strong {
    color: var(--primary-color);
    font-weight: 700;
}

.future-plans {
    padding: 100px 0;
}

.future-plans h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: 700;
}

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

.plan-item {
    flex: 1;
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: 8px;
}

.plan-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

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

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

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

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

.service-details > p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-details h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 24px;
    font-weight: 600;
}

.service-details ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-details li {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.service-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

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

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

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

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

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

.booking-form-section > div > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.why-choose {
    padding: 100px 0;
}

.why-choose h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

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

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: 8px;
    text-align: center;
}

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

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

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

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

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

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

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

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

.faq-item {
    background-color: var(--bg-white);
    padding: 28px 32px;
    margin-bottom: 16px;
    border-left: 3px solid var(--secondary-color);
}

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

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

.location-section {
    padding: 100px 0;
}

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

.location-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.location-details p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.location-details strong {
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.thanks-box {
    text-align: center;
    background-color: var(--bg-light);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.thanks-box h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.submission-details {
    text-align: left;
    margin-bottom: 40px;
}

.submission-details h2 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.next-steps {
    padding-left: 24px;
}

.next-steps li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.additional-info {
    text-align: left;
    margin-bottom: 30px;
}

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

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

.additional-info li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.contact-reminder {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.contact-reminder p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.legal-page {
    padding: 60px 0;
    background-color: var(--bg-white);
}

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

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

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 16px;
    margin-top: 24px;
    font-weight: 600;
}

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

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

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

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.legal-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.cookie-table th {
    background-color: var(--bg-light);
    padding: 14px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-medium);
}

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

    .intro-columns,
    .story-layout,
    .form-layout,
    .contact-layout {
        flex-direction: column;
    }

    .review-card-large {
        flex-direction: column;
    }

    .review-card-large img {
        width: 100%;
    }

    .review-card-large .review-content {
        width: 100%;
    }

    .criteria-columns,
    .plans-grid,
    .benefits-grid {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column !important;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-overlay {
        padding: 60px 30px;
    }

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

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

    .content-wrapper,
    .content-wrapper-narrow {
        padding: 60px 20px;
    }

    .section-title,
    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 32px;
    }

    .review-card-medium {
        flex: 1 1 100%;
    }

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

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }
}