* {
    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;
}

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 34px;
    z-index: 999;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #2c5aa0;
}

.hero-narrative {
    position: relative;
    height: 85vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-narrative img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0 30px;
    color: #ffffff;
}

.hero-content-narrow h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.95;
}

.story-section {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.story-container {
    max-width: 680px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-container h3 {
    font-size: 1.7rem;
    margin: 50px 0 20px;
    color: #2c3e50;
}

.story-container p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #4a5568;
}

.inline-image-block {
    margin: 50px 0;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.image-caption {
    text-align: center;
    font-size: 0.95rem;
    color: #718096;
    margin-top: 12px;
    font-style: italic;
}

.cta-inline {
    text-align: center;
    margin: 50px 0;
}

.btn-primary {
    display: inline-block;
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background-color: #1e4278;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5aa0;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #2c5aa0;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #2c5aa0;
    color: #ffffff;
}

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

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

.insight-left {
    flex: 1;
    background-color: #e8eef5;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-right {
    flex: 1;
}

.insight-right h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.insight-right p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a5568;
}

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

.benefit-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 1.05rem;
    color: #2c3e50;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
}

.testimonial-flow {
    padding: 90px 20px;
    background-color: #f0f4f8;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-wrapper h2 {
    font-size: 2.1rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

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

.testimonial-author {
    font-weight: 600;
    color: #718096;
    font-size: 0.95rem;
}

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

.problem-container {
    max-width: 1100px;
    margin: 0 auto;
}

.problem-container h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #c0392b;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.problem-item {
    background-color: #fff5f5;
    padding: 35px;
    border-radius: 8px;
    border-left: 5px solid #e74c3c;
}

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #c0392b;
}

.problem-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.solution-reveal {
    padding: 90px 20px;
    background-color: #ecf6f0;
}

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

.solution-container h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.solution-visual {
    margin-bottom: 60px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #d4e8dc;
}

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

.solution-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: #27ae60;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
}

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

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-container h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.pricing-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #718096;
    margin-bottom: 60px;
}

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

.pricing-card {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    background-color: #f8f9fa;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    background-color: #e8f4fc;
    border: 2px solid #2c5aa0;
}

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

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-description {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.5;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 25px;
}

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

.service-features li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    font-size: 0.95rem;
    color: #4a5568;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 5px;
    color: #2c5aa0;
    font-size: 1.3rem;
}

.form-section {
    padding: 90px 20px;
    background-color: #f5f7fa;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 50px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.checkbox-group a {
    color: #2c5aa0;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.trust-markers {
    padding: 70px 20px;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 1.05rem;
    color: #ecf0f1;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fef5e7;
    border-top: 3px solid #f39c12;
}

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

.disclaimer-text {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 25px 20px;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-cookie.accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.page-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4278 100%);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.services-detail {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.service-detail-block {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8eef5;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: #2c3e50;
}

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

.service-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    color: #4a5568;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-duration {
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
    margin-top: 20px;
}

.cta-services {
    padding: 70px 20px;
    background-color: #2c5aa0;
    text-align: center;
    color: #ffffff;
}

.cta-services-container h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-services-container p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

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

.about-content-main {
    margin-bottom: 50px;
}

.about-content-main h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-content-main p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.about-image-block {
    margin: 60px 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8eef5;
}

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

.about-values {
    margin-top: 60px;
}

.about-values h2 {
    font-size: 2.1rem;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #2c5aa0;
}

.value-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.numbers-section {
    padding: 70px 20px;
    background-color: #f0f4f8;
}

.numbers-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.number-big {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.number-box p {
    font-size: 1.05rem;
    color: #4a5568;
}

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

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

.approach-container h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.approach-number {
    width: 60px;
    height: 60px;
    background-color: #2c5aa0;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.approach-step h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.approach-step p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.cta-about {
    padding: 70px 20px;
    background-color: #ecf6f0;
    text-align: center;
}

.cta-about-container h2 {
    font-size: 2.1rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

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

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

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c5aa0;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
    background-color: #e8eef5;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.contact-cta {
    padding: 70px 20px;
    background-color: #f0f4f8;
    text-align: center;
}

.contact-cta-container h2 {
    font-size: 2.1rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-cta-container p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 50px;
}

.thanks-info {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.thanks-info h2 {
    font-size: 1.8rem;
    margin-bottom: 35px;
    color: #2c5aa0;
}

.thanks-steps {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.thanks-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.thanks-step p {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
}

.thanks-service-info {
    margin-bottom: 40px;
}

.selected-service-box {
    background-color: #e8f4fc;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #2c5aa0;
}

.selected-service-box h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5aa0;
}

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

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

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-update {
    font-size: 0.95rem;
    color: #95a5a6;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: #34495e;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

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

.legal-container ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.legal-container a {
    color: #2c5aa0;
    text-decoration: underline;
}

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

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-menu li {
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-menu li a {
        display: block;
        padding: 18px 20px;
    }

    .hero-content-narrow h1 {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .insight-container {
        flex-direction: column;
    }

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

    .contact-container {
        flex-direction: column;
    }

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

    .pricing-card {
        max-width: 100%;
    }

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

    .thanks-steps {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}