* {
    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: #333;
    background: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4a9eff;
    color: #fff;
}

.btn-accept:hover {
    background: #3585e6;
}

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

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

.floating-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 20px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 8px;
    background: #f5f5f5;
    border-radius: 3px;
    align-self: flex-start;
}

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

.nav-links a {
    font-size: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a9eff;
}

.hero-visual {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
}

.hero-overlay h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.95;
}

.intro-story {
    padding: 80px 20px;
    background: #f9f9f9;
}

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

.narrow-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1a1a1a;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.split-insight {
    padding: 90px 20px;
    background: #fff;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.split-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.problem-amplification {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

.wide-content {
    max-width: 1300px;
    margin: 0 auto;
}

.wide-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.mistake-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mistake-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #4a9eff;
}

.mistake-number {
    font-size: 48px;
    font-weight: 700;
    color: #4a9eff;
    margin-bottom: 15px;
    opacity: 0.6;
}

.mistake-card h4 {
    font-size: 24px;
    margin-bottom: 12px;
}

.mistake-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.data-reveal {
    padding: 90px 20px;
    background: #fff;
}

.centered {
    text-align: center;
}

.data-visual {
    max-width: 900px;
    margin: 50px auto 0;
}

.data-comparison {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.data-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.data-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.data-bar {
    height: 30px;
    background: #e0e0e0;
    border-radius: 15px;
    position: relative;
}

.bar-high {
    width: 100%;
    background: #ff6b6b;
}

.bar-medium {
    width: 67%;
    background: #ffa94d;
}

.bar-low {
    width: 44%;
    background: #51cf66;
}

.data-value {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.data-item.highlight {
    background: #f0f9ff;
    padding: 15px;
    border-radius: 8px;
}

.story-section {
    padding: 100px 20px;
    background: #f5f5f5;
}

.story-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #444;
}

blockquote {
    background: #fff;
    padding: 25px 30px;
    margin: 30px 0;
    border-left: 5px solid #4a9eff;
    font-style: italic;
    font-size: 19px;
    line-height: 1.6;
    color: #333;
}

.story-layout img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.trust-building {
    padding: 90px 20px;
    background: #fff;
}

.expert-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.expert-quote {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid #4a9eff;
}

.expert-quote p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.expert-attribution {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.insight-deep {
    padding: 100px 20px;
    background: #f0f4f8;
}

.asymmetric-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.insight-main h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.insight-main p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.7;
}

.technical-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tech-point {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tech-point h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.tech-point p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.insight-side img {
    border-radius: 8px;
}

.benefit-reveal {
    padding: 90px 20px;
    background: #fff;
}

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

.centered-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.benefit-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-card {
    background: #f9f9f9;
    padding: 35px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.comparison-deep {
    padding: 100px 20px;
    background: #fafafa;
}

.comparison-intro {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.cost-table {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.cost-row {
    display: flex;
    padding: 18px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.cost-row.header {
    background: #1a1a1a;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.cost-row.total {
    background: #f0f9ff;
    font-weight: 700;
    font-size: 18px;
    border-bottom: none;
}

.cost-row > div {
    flex: 1;
    padding: 0 10px;
    font-size: 15px;
}

.cost-row > div:first-child {
    flex: 1.5;
}

.comparison-conclusion {
    text-align: center;
    margin-top: 30px;
    font-size: 17px;
    color: #333;
    font-weight: 600;
    line-height: 1.7;
}

.testimonial-section {
    padding: 90px 20px;
    background: #fff;
}

.testimonial-layout {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-layout h2 {
    font-size: 36px;
    margin-bottom: 45px;
    text-align: center;
    color: #1a1a1a;
}

.testimonial-blocks {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #4a9eff;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.cta-mid {
    padding: 80px 20px;
    background: linear-gradient(135deg, #4a9eff 0%, #3585e6 100%);
    color: #fff;
}

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

.cta-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

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

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #4a9eff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.services-reveal {
    padding: 100px 20px;
    background: #fff;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.service-card {
    background: #f9f9f9;
    padding: 35px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2ff 100%);
    border: 2px solid #4a9eff;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #4a9eff;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.service-card h4 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #444;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #51cf66;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #4a9eff;
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    padding: 15px;
    background: #4a9eff;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #3585e6;
}

.faq-section {
    padding: 90px 20px;
    background: #f5f5f5;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.contact-section {
    padding: 100px 20px;
    background: #fff;
}

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

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

.form-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

.selected-service-display {
    background: #f0f9ff;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #4a9eff;
    font-size: 16px;
    color: #333;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a9eff;
    box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.1);
}

.btn-submit {
    padding: 15px;
    background: #4a9eff;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

.disclaimer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

.footer-column h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 14px;
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4a9eff;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 15px 30px;
    background: #4a9eff;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(74, 158, 255, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #3585e6;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(74, 158, 255, 0.5);
}

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

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

.about-intro {
    padding: 90px 20px;
    background: #fff;
}

.mission-section {
    padding: 90px 20px;
    background: #f5f5f5;
}

.values-section {
    padding: 90px 20px;
    background: #fff;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.experience-section {
    padding: 90px 20px;
    background: #f0f4f8;
}

.stats-display {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #4a9eff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #555;
}

.approach-section {
    padding: 90px 20px;
    background: #fff;
}

.approach-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

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

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.approach-step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.approach-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.services-overview {
    padding: 90px 20px;
    background: #fff;
}

.services-detail {
    padding: 90px 20px;
    background: #f5f5f5;
}

.service-detail-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h3 {
    font-size: 28px;
    color: #1a1a1a;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #4a9eff;
}

.service-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-includes h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-includes ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-includes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #444;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #51cf66;
    font-weight: 700;
}

.process-section {
    padding: 90px 20px;
    background: #fff;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

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

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-info-section {
    padding: 90px 20px;
    background: #fff;
}

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

.contact-info-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-detail {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 14px;
    color: #4a9eff;
    font-style: italic;
}

.location-section {
    padding: 90px 20px;
    background: #f5f5f5;
}

.map-placeholder {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-cta {
    padding: 90px 20px;
    background: #fff;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #4a9eff;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #4a9eff;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4a9eff;
    color: #fff;
}

.thanks-section {
    padding: 100px 20px;
    background: #f9f9f9;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.selected-service-confirmation {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
}

.service-selected {
    color: #333;
}

.next-steps {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h3 {
    font-size: 26px;
    margin-bottom: 25px;
    text-align: center;
    color: #1a1a1a;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    padding-left: 20px;
    border-left: 3px solid #4a9eff;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.step-item strong {
    color: #1a1a1a;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.legal-content {
    padding: 60px 20px;
    background: #fff;
}

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

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

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

.legal-content li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.legal-content a {
    color: #4a9eff;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .split-container {
        flex-direction: row;
        align-items: center;
    }

    .split-text {
        flex: 1;
    }

    .split-image {
        flex: 1;
    }

    .mistake-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .mistake-card {
        flex: 1;
        min-width: 280px;
    }

    .expert-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .expert-quote {
        flex: 1;
        min-width: 300px;
    }

    .asymmetric-layout {
        flex-direction: row;
        align-items: center;
    }

    .insight-main {
        flex: 1.3;
    }

    .insight-side {
        flex: 0.7;
    }

    .benefit-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1;
        min-width: 250px;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 280px;
    }

    .story-layout {
        flex-direction: row;
        align-items: center;
    }

    .story-content {
        flex: 1;
    }

    .story-layout img {
        flex: 0.8;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: 250px;
    }

    .stats-display {
        flex-direction: row;
        justify-content: center;
        gap: 80px;
    }

    .contact-grid {
        flex-direction: row;
    }

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

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-content p {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

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

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

    .narrow-content h2 {
        font-size: 38px;
    }

    .split-text h3 {
        font-size: 42px;
    }

    .wide-content h2 {
        font-size: 44px;
    }
}
