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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.floating-nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    margin: 0 40px;
    border-radius: 12px;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c5f2d;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
}

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

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #2c5f2d;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #ffffff;
}

.hero-title {
    font-size: 68px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 45px;
    max-width: 700px;
    line-height: 1.5;
}

.hero-cta {
    display: inline-block;
    padding: 18px 50px;
    background-color: #2c5f2d;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    background-color: #234d24;
    opacity: 1;
}

.story-intro {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.intro-text {
    font-size: 26px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 30px;
}

.intro-continuation {
    font-size: 22px;
    line-height: 1.6;
    color: #5a6c7d;
}

.visual-block-left,
.visual-block-right {
    display: flex;
    align-items: center;
    min-height: 600px;
}

.visual-block-left {
    flex-direction: row;
}

.visual-block-right {
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

.image-container {
    flex: 1;
    background-color: #e9ecef;
}

.image-container img {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.text-container {
    flex: 1;
    padding: 80px 100px;
}

.text-container h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.2;
}

.text-container p {
    font-size: 19px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.insight-reveal {
    padding: 120px 20px;
    background-color: #2c5f2d;
    color: #ffffff;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-heading {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    line-height: 1.3;
}

.insight-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.insight-card {
    flex: 1;
    max-width: 350px;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
}

.insight-card p {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.95;
}

.trust-markers {
    padding: 100px 20px;
    background-color: #ffffff;
}

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.testimonial {
    background-color: #f8f9fa;
    padding: 40px 50px;
    border-radius: 12px;
    border-left: 4px solid #2c5f2d;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

.visual-immersion {
    position: relative;
    height: 700px;
    background-color: #2c5f2d;
}

.visual-immersion img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.immersion-text {
    position: absolute;
    bottom: 80px;
    left: 80px;
    max-width: 600px;
    color: #ffffff;
}

.immersion-text h2 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.immersion-text p {
    font-size: 22px;
    line-height: 1.5;
}

.benefits-reveal {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.benefits-wrapper h2 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

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

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

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #5a6c7d;
}

.cta-block-inline {
    padding: 100px 20px;
    background-color: #2c5f2d;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.inline-cta-button {
    display: inline-block;
    padding: 20px 55px;
    background-color: #ffffff;
    color: #2c5f2d;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.inline-cta-button:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.pricing-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.pricing-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-wrapper h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-intro {
    text-align: center;
    font-size: 19px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.price-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 380px;
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border-color: #2c5f2d;
    background-color: #ffffff;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #2c3e50;
    min-height: 60px;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 25px;
    min-height: 120px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 25px;
}

.select-service {
    width: 100%;
    padding: 15px 25px;
    background-color: #2c5f2d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.form-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.form-wrapper h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 50px;
}

.contact-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
}

.selected-service-info {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 16px;
    color: #5a6c7d;
    text-align: center;
}

.service-selected {
    padding: 20px;
    background-color: #d4edda;
    border: 2px solid #2c5f2d;
    border-radius: 8px;
    color: #2c3e50;
}

.service-selected strong {
    color: #2c5f2d;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background-color: #2c5f2d;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    text-align: center;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 70px 20px 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-column ul li a {
    font-size: 15px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 25px 20px;
    z-index: 10000;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.cookie-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-accept:hover,
.cookie-reject:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-hero {
    margin-top: 120px;
    margin-bottom: 60px;
}

.page-hero-image {
    position: relative;
    height: 500px;
    background-color: #2c5f2d;
}

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

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.page-hero-overlay h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.page-hero-overlay p {
    font-size: 22px;
    opacity: 0.95;
}

.services-intro {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.services-intro-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #5a6c7d;
}

.services-detailed {
    padding: 40px 20px 100px;
    background-color: #f8f9fa;
}

.service-detail-block {
    max-width: 1300px;
    margin: 0 auto 80px;
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.service-detail-block.premium {
    flex-direction: column;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 60px 80px;
    position: relative;
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 40px;
    background-color: #ffd700;
    color: #2c3e50;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
    background-color: #e9ecef;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.service-detail-text {
    flex: 1;
    padding: 50px;
}

.service-detail-text h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-block.premium .service-detail-text h3,
.service-detail-block.premium h3 {
    color: #ffffff;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.service-detail-block.premium .service-price,
.price-value-large {
    color: #ffd700;
}

.popular-label {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-detail-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.service-detail-block.premium p {
    color: rgba(255, 255, 255, 0.95);
}

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

.service-benefits li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
}

.service-detail-block.premium .service-benefits li {
    color: rgba(255, 255, 255, 0.95);
}

.service-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.service-detail-block.premium .service-benefits li::before {
    color: #ffd700;
}

.service-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2c5f2d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-cta:hover {
    transform: translateY(-2px);
    background-color: #234d24;
    opacity: 1;
}

.service-detail-block.premium .service-cta,
.service-cta-large {
    background-color: #ffd700;
    color: #2c3e50;
    padding: 18px 50px;
    font-size: 18px;
}

.service-detail-block.premium .service-cta:hover,
.service-cta-large:hover {
    background-color: #ffed4e;
}

.service-detail-full {
    text-align: center;
    width: 100%;
}

.premium-intro {
    font-size: 19px;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.premium-features {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-bottom: 50px;
    text-align: left;
}

.premium-column {
    flex: 1;
    max-width: 350px;
}

.premium-column h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #ffd700;
}

.premium-column ul {
    list-style: none;
}

.premium-column ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.premium-column ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
}

.why-choose-us {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.why-content h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

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

.reason-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.reason-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #5a6c7d;
}

.about-story {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.about-content h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.team-values {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.values-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.values-wrapper h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #2c5f2d;
}

.value-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #5a6c7d;
}

.about-approach {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.approach-content h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.approach-intro {
    text-align: center;
    font-size: 19px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

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

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

.step-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.step-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #5a6c7d;
}

.about-stats {
    padding: 100px 20px;
    background-color: #2c5f2d;
    color: #ffffff;
}

.stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-wrapper h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
}

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

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

.stat-number {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffd700;
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
}

.contact-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-block h2 {
    font-size: 44px;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

.contact-detail {
    margin-bottom: 45px;
}

.contact-detail h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.contact-detail p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
}

.email-display {
    color: #2c3e50;
    font-weight: 500;
}

.working-hours-note {
    font-size: 16px;
    color: #6c757d;
    margin-top: 15px;
    font-style: italic;
}

.contact-additional {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.additional-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.additional-wrapper h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.additional-wrapper > p {
    text-align: center;
    font-size: 19px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.help-topics {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.topic-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 260px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.topic-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.topic-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
}

.location-info {
    padding: 80px 20px;
    background-color: #ffffff;
}

.location-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.location-wrapper h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.location-wrapper > p {
    text-align: center;
    font-size: 19px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.locations-list {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.location-group {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.location-group h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.location-group ul {
    list-style: none;
}

.location-group ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 17px;
    color: #5a6c7d;
}

.location-group ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.location-note {
    text-align: center;
    font-size: 16px;
    color: #6c757d;
    font-style: italic;
}

.thanks-hero {
    padding: 150px 20px 100px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2c5f2d;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 22px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.thanks-details {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #d4edda;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #2c5f2d;
}

.next-steps {
    padding: 80px 20px;
    background-color: #ffffff;
}

.steps-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.steps-wrapper h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.step-card {
    flex: 1;
    max-width: 350px;
    text-align: center;
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2c5f2d;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
}

.thanks-resources {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.resources-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.resources-wrapper h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.resource-item {
    flex: 1;
    max-width: 350px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.resource-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.resource-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.resource-link {
    display: inline-block;
    color: #2c5f2d;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s ease;
}

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

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

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

.reassurance-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.reassurance-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.reassurance-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

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

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

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .floating-nav {
        margin: 0 20px;
        padding: 15px 30px;
    }

    .hero-title {
        font-size: 48px;
    }

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

    .visual-block-left,
    .visual-block-right {
        flex-direction: column;
    }

    .text-container {
        padding: 60px 40px;
    }

    .insight-grid {
        flex-direction: column;
        align-items: center;
    }

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

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

    .service-detail-image {
        min-width: 100%;
    }

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

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

    .steps-grid,
    .resources-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        top: 20px;
        margin: 0 15px;
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .text-container {
        padding: 40px 25px;
    }

    .text-container h2 {
        font-size: 32px;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-detail-block.premium {
        padding: 40px 25px;
    }

    .contact-form {
        padding: 30px 25px;
    }
}