/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Container Layouts */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.active {
    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;
    min-width: 300px;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-cookie {
    background: #3498db;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-cookie-alt {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

/* Buttons */
.btn-primary,
.btn-primary-large {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #667eea;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover,
.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary-large {
    padding: 20px 50px;
    font-size: 18px;
}

/* Split Content Layout */
.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.content-block,
.image-block,
.image-block-wide {
    flex: 1;
}

.content-block h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.3;
}

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

.label {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.image-block img,
.image-block-wide img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Section Styles */
.intro-section,
.insight-section,
.about-story,
.values-section {
    padding: 80px 0;
}

.problem-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

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

.problem-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.problem-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e74c3c;
}

.problem-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Story Section */
.story-section {
    background: #f8f9fa;
    padding: 100px 0;
}

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

.story-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #444;
}

blockquote {
    background: #ffffff;
    border-left: 5px solid #3498db;
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 20px;
    line-height: 1.7;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: #3498db;
}

/* Technique Showcase */
.technique-showcase {
    padding: 100px 0;
    background: #ffffff;
}

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

.technique-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tech-card {
    flex: 1;
    min-width: 260px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.tech-number {
    font-size: 60px;
    font-weight: 700;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
}

.tech-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.tech-card p {
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

/* Trust Section */
.trust-section {
    background: #2c3e50;
    color: #ffffff;
    padding: 80px 0;
}

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

.trust-logos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.trust-item p {
    font-size: 18px;
    line-height: 1.6;
}

/* Services Section */
.services-preview {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    max-width: 800px;
    margin: 20px auto 60px;
    color: #555;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border: 3px solid #3498db;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #3498db;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
}

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

.service-features {
    margin: 25px 0;
}

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

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.btn-select-service {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: #ffffff;
}

.form-wrapper {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #3498db;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

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

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

.footer-col p {
    line-height: 1.7;
    opacity: 0.9;
}

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 18px 35px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 5px 25px rgba(52, 152, 219, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.5);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 100px 0 80px;
    text-align: center;
}

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

.hero-lead {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

.mission-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 20px auto 60px;
    font-size: 18px;
    color: #555;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #3498db;
}

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

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.member-role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Numbers Section */
.numbers-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 0;
}

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

.numbers-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.number-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

.number-item p {
    font-size: 16px;
    opacity: 0.95;
}

/* Values Section */
.values-list {
    margin-top: 30px;
}

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

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 60px;
    border-radius: 16px;
    text-align: center;
}

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

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

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
}

.services-detailed.alt-bg {
    background: #f8f9fa;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.service-tag {
    display: inline-block;
    background: #e8f4f8;
    color: #3498db;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-tag.featured-tag {
    background: #3498db;
    color: #ffffff;
}

.service-tag.premium-tag {
    background: #f39c12;
    color: #ffffff;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.price-display {
    font-size: 42px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.service-lead {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.7;
}

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

.feature-list {
    margin: 20px 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.feature-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 20px;
}

.service-cta {
    margin-top: 40px;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: #ffffff;
}

.comparison-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.comparison-table td {
    font-size: 15px;
    color: #555;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Contact Page */
.contact-info-section {
    padding: 60px 0;
}

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

.contact-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: #ffffff;
}

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

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

.contact-card a {
    color: #3498db;
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.map-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.map-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.additional-info {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.info-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.info-box p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.info-box a {
    color: #3498db;
    font-weight: 600;
}

/* Thanks Page */
.thanks-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

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

.thanks-lead {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.thanks-info {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.thanks-next-steps {
    background: #ffffff;
    color: #2c3e50;
    padding: 60px;
    border-radius: 12px;
    margin: 60px 0;
}

.thanks-next-steps h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

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

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.thanks-resources {
    background: #ffffff;
    color: #2c3e50;
    padding: 50px;
    border-radius: 12px;
    margin: 40px 0;
}

.thanks-resources h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.resource-list {
    margin-top: 20px;
}

.resource-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
}

.resource-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 20px;
}

.resource-list a {
    color: #3498db;
    font-weight: 600;
}

.thanks-cta {
    margin-top: 40px;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.update-date {
    font-size: 16px;
    color: #999;
    margin-bottom: 40px;
}

.legal-section {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

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

.legal-section ul {
    list-style: disc;
}

.legal-section ol {
    list-style: decimal;
}

.legal-section li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.legal-section a {
    color: #3498db;
    font-weight: 600;
}

.note {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 15px;
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .hamburger {
        display: flex;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 14px 25px;
        font-size: 14px;
    }

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

    .cta-content h2,
    .cta-box h2 {
        font-size: 30px;
    }

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

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

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 28px;
    }

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

    .content-block h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }

    .problem-grid,
    .technique-cards,
    .services-grid {
        gap: 20px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .cta-box {
        padding: 50px 30px;
    }

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

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

    .thanks-next-steps,
    .thanks-resources {
        padding: 30px 20px;
    }

    .legal-section {
        padding: 25px 20px;
    }
}
