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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #4a8c5f;
    --accent-color: #7bc96f;
    --dark-bg: #1a2f23;
    --light-bg: #f8faf9;
    --text-dark: #2c3e35;
    --text-light: #6b7c72;
    --border-color: #d4e0d8;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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: var(--dark-bg);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.main-nav {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

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

.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f3ed 100%);
    padding: 80px 40px;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-section h1 {
    font-size: 56px;
    line-height: 1.2;
    color: var(--dark-bg);
    font-weight: 800;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    line-height: 1.7;
}

.hero-visual {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.btn-hero {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 42px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-hero:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.intro-block {
    background: var(--white);
    padding: 100px 40px;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 42px;
    line-height: 1.3;
    color: var(--dark-bg);
    margin-bottom: 30px;
}

.intro-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.insight-section {
    background: var(--dark-bg);
    color: var(--white);
    padding: 120px 40px;
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h3 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.insight-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.link-cta {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease;
}

.link-cta:hover {
    transform: translateX(5px);
}

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

.section-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header h2 {
    font-size: 48px;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

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

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid var(--secondary-color);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-icon {
    color: var(--secondary-color);
    margin-bottom: 24px;
}

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

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

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

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

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

.cta-block {
    text-align: center;
    max-width: 700px;
    margin: 60px auto 0;
}

.cta-block p {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

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

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

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

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

.trust-section {
    background: var(--white);
    padding: 100px 40px;
}

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

.trust-content h2 {
    font-size: 42px;
    color: var(--dark-bg);
    margin-bottom: 24px;
}

.trust-content > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

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

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

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

.testimonials-section {
    background: var(--light-bg);
    padding: 100px 40px;
}

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

.testimonials-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

.process-section {
    background: var(--white);
    padding: 100px 40px;
}

.process-content {
    max-width: 1200px;
    margin: 0 auto;
}

.process-content h2 {
    font-size: 42px;
    color: var(--dark-bg);
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.step-number {
    font-size: 72px;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 26px;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

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

.benefits-reveal {
    background: var(--dark-bg);
    color: var(--white);
    padding: 120px 40px;
}

.benefits-content {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

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

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.form-section {
    background: var(--light-bg);
    padding: 120px 40px;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 60px;
}

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

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

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

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

.final-cta {
    background: var(--white);
    padding: 100px 40px;
    text-align: center;
}

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

.final-cta-content h2 {
    font-size: 42px;
    color: var(--dark-bg);
    margin-bottom: 24px;
}

.final-cta-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-primary-large:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.main-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 40px 30px;
}

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

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

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-col h4 {
    margin-bottom: 16px;
    color: var(--accent-color);
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 16px 40px;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.sticky-cta-content span {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--accent-color);
    color: var(--white);
}

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

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

.page-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.about-story {
    background: var(--white);
    padding: 100px 40px;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    color: var(--dark-bg);
    margin-bottom: 24px;
}

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

.story-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

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

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

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

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

.team-section {
    background: var(--white);
    padding: 100px 40px;
    text-align: center;
}

.team-section h2 {
    font-size: 42px;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.stat-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

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

.approach-section {
    background: var(--light-bg);
    padding: 100px 40px;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 42px;
    color: var(--dark-bg);
    margin-bottom: 30px;
    text-align: center;
}

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

.cta-section {
    background: var(--dark-bg);
    color: var(--white);
    padding: 100px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail {
    background: var(--white);
    margin-bottom: 60px;
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}

.service-detail.featured-service {
    border: 3px solid var(--secondary-color);
}

.service-badge-large {
    position: absolute;
    top: -15px;
    left: 60px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.service-icon-large {
    color: var(--secondary-color);
}

.service-title-block {
    flex: 1;
}

.service-title-block h2 {
    font-size: 36px;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

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

.service-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 500;
}

.service-detail-content h3 {
    font-size: 24px;
    color: var(--dark-bg);
    margin-top: 30px;
    margin-bottom: 16px;
}

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

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.btn-service-page {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 42px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-service-page:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

.packages-section h2 {
    font-size: 42px;
    color: var(--dark-bg);
    text-align: center;
    margin-bottom: 20px;
}

.packages-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.package-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.package-card.featured-package {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.package-card h3 {
    font-size: 28px;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.package-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.package-price {
    margin-bottom: 16px;
}

.price-old {
    display: block;
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 8px;
}

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

.package-savings {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
}

.faq-section {
    background: var(--white);
    padding: 100px 40px;
}

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

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

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

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

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

.contact-section {
    background: var(--white);
    padding: 80px 40px;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.info-note {
    background: var(--light-bg);
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
}

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

.contact-map {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.thanks-section {
    background: var(--white);
    padding: 100px 40px;
    text-align: center;
}

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

.thanks-icon {
    color: var(--accent-color);
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

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

.service-info {
    background: var(--light-bg);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 17px;
    color: var(--text-dark);
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.thanks-note {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
}

.thanks-note strong {
    display: block;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.thanks-note ul {
    list-style: none;
    padding-left: 0;
}

.thanks-note li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

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

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

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

.legal-content h1 {
    font-size: 42px;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

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

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

.legal-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 12px;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    margin-bottom: 40px;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--dark-bg);
}

.cookies-table td {
    font-size: 15px;
    color: var(--text-light);
}

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

    .insight-wrapper,
    .story-content {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .package-card.featured-package {
        transform: scale(1);
    }
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow);
        display: none;
        padding: 20px 40px;
    }

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

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
        padding: 12px 0;
    }

    .hero-section {
        padding: 60px 20px;
    }

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

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

    .section-header h2,
    .trust-content h2,
    .process-content h2 {
        font-size: 32px;
    }

    .service-card,
    .testimonial,
    .step,
    .benefit-item,
    .value-item,
    .package-card {
        flex: 1 1 100%;
    }

    .contact-form {
        padding: 30px;
    }

    .sticky-cta-content {
        justify-content: center;
        text-align: center;
    }

    .footer-content {
        gap: 40px;
    }

    .service-detail {
        padding: 40px 30px;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }
}