/* 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', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #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 {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

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

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

.btn-cookie {
    padding: 10px 24px;
    background: #4a90e2;
    color: #ffffff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-cookie:hover {
    background: #357abd;
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 1px solid #ffffff;
}

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

/* Navigation - Floating Style */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

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

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    position: relative;
}

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

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

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 100vh;
    padding: 120px 30px 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    max-width: 600px;
    padding-right: 60px;
    position: relative;
    z-index: 2;
}

.hero-small-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4a90e2;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 19px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 35px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 42px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-visual-block {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
}

/* Insight Overlap Section */
.insight-overlap {
    padding: 100px 30px;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-left {
    flex: 1;
    padding-right: 40px;
}

.insight-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.insight-left p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.insight-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
    transform: translateX(20px);
}

.stat-card:nth-child(even) {
    transform: translateX(-20px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
}

/* Story Section */
.story-section {
    padding: 120px 30px;
    background: #fafafa;
}

.story-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.story-image-float {
    float: left;
    margin: 0 50px 30px 0;
    width: 400px;
    position: relative;
}

.story-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.12);
}

.story-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.story-highlight {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    font-style: italic;
    padding-left: 20px;
    border-left: 3px solid #4a90e2;
    margin-top: 30px;
}

/* Problem Amplify Section */
.problem-amplify {
    padding: 100px 30px;
    background: #1a1a1a;
    color: #ffffff;
}

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

.section-title-offset {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    transform: translateX(-10px);
}

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

.problem-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.problem-item.offset-top {
    margin-left: 80px;
}

.problem-icon {
    font-size: 36px;
    color: #4a90e2;
    flex-shrink: 0;
}

.problem-text h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.cta-inline {
    display: inline-block;
    padding: 14px 38px;
    background: #4a90e2;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.cta-inline:hover {
    background: #357abd;
}

/* Services Creative Section */
.services-creative {
    padding: 120px 30px;
    background: #ffffff;
}

.services-intro {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.services-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4a90e2;
    display: block;
    margin-bottom: 15px;
}

.services-intro h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.services-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 35px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card.large {
    flex: 1 1 100%;
}

.service-card.offset-left {
    margin-left: 40px;
}

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

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

.service-header h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #4a90e2;
}

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

.service-features {
    margin: 20px 0;
    padding: 0;
}

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

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

.btn-service {
    padding: 12px 28px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    margin-top: auto;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #333;
}

/* Trust Section */
.trust-section {
    padding: 100px 30px;
    background: #f8f9fa;
}

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

.trust-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.testimonials-irregular {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card.offset {
    margin-left: 60px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
}

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

/* Mechanism Section */
.mechanism-section {
    padding: 100px 30px;
    background: #ffffff;
}

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

.mechanism-text {
    flex: 1;
}

.mechanism-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4a90e2;
    display: block;
    margin-bottom: 15px;
}

.mechanism-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

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

.mechanism-list {
    margin-top: 25px;
    padding-left: 0;
}

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

.mechanism-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
}

.mechanism-visual {
    flex: 1;
}

.mechanism-img {
    width: 100%;
    max-width: 450px;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
}

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

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

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

.form-intro-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-intro-text p {
    font-size: 17px;
    color: #555;
}

.contact-form {
    background: #ffffff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #333;
}

.form-privacy {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-top: 20px;
}

.form-privacy a {
    color: #4a90e2;
    text-decoration: underline;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 30px;
    background: #4a90e2;
    color: #ffffff;
    text-align: center;
}

.urgency-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.cta-urgency {
    display: inline-block;
    padding: 16px 42px;
    background: #ffffff;
    color: #4a90e2;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.cta-urgency:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 30px 30px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a:hover {
    color: #4a90e2;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

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

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

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background: #4a90e2;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(74, 144, 226, 0.5);
}

/* Page Hero (for internal pages) */
.page-hero {
    padding: 140px 30px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

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

.page-hero-content p {
    font-size: 19px;
    color: #555;
}

/* About Page Styles */
.about-story {
    padding: 80px 30px;
}

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

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

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

.about-image-block {
    flex: 1;
}

.about-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.philosophy-section {
    padding: 80px 30px;
    background: #f8f9fa;
}

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

.section-title-centered {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

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

.philosophy-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.philosophy-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #4a90e2;
}

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

.team-section {
    padding: 80px 30px;
}

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

.team-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.team-intro {
    font-size: 17px;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

.team-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-member h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.results-section {
    padding: 80px 30px;
    background: #1a1a1a;
    color: #ffffff;
}

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

.results-wrapper h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

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

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

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

.result-label {
    font-size: 16px;
    color: #ccc;
}

.cta-section-about {
    padding: 80px 30px;
    background: #4a90e2;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
}

.btn-cta-large {
    display: inline-block;
    padding: 16px 42px;
    background: #ffffff;
    color: #4a90e2;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.btn-cta-large:hover {
    transform: scale(1.05);
}

/* Services Page Styles */
.services-detailed {
    padding: 60px 30px;
}

.services-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-header {
    background: #f8f9fa;
    padding: 30px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 28px;
    font-weight: 700;
    flex: 1;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 800;
    color: #4a90e2;
}

.service-detail-content {
    padding: 35px;
}

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

.service-detail-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail-list {
    margin: 20px 0;
    padding-left: 0;
}

.service-detail-list li {
    font-size: 16px;
    color: #555;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.service-detail-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #4a90e2;
    font-weight: 700;
    font-size: 20px;
}

.service-detail-cta {
    margin-top: 30px;
}

.btn-service-large {
    padding: 14px 40px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn-service-large:hover {
    background: #333;
}

.comparison-section {
    padding: 80px 30px;
    background: #f8f9fa;
}

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

.comparison-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

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

.comparison-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.comparison-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.comparison-item p {
    font-size: 16px;
    color: #666;
}

.services-cta {
    padding: 80px 30px;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-cta-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

/* Contact Page Styles */
.contact-main {
    padding: 60px 30px;
}

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

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

.contact-info-side h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-info-block {
    margin-bottom: 35px;
}

.contact-info-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-info-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-info-block a {
    color: #4a90e2;
}

.contact-form-side {
    flex: 1;
}

.contact-form-side h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.faq-section {
    padding: 80px 30px;
    background: #f8f9fa;
}

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

.faq-container h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

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

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

/* Thanks Page Styles */
.thanks-section {
    min-height: 70vh;
    padding: 140px 30px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.thanks-lead {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: none;
}

.thanks-info p {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-steps {
    padding-left: 0;
}

.thanks-steps li {
    font-size: 16px;
    color: #555;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.thanks-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
    font-size: 18px;
}

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

.btn-primary {
    padding: 14px 32px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #333;
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: #4a90e2;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #4a90e2;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4a90e2;
    color: #ffffff;
}

/* Legal Pages */
.legal-page {
    padding: 100px 30px 60px;
}

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

.legal-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.legal-intro {
    font-size: 15px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content {
    line-height: 1.8;
}

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

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

.legal-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #444;
}

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

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

.legal-content ul li {
    font-size: 16px;
    color: #555;
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.legal-content ul li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #4a90e2;
    font-weight: 700;
    font-size: 20px;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

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

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

    .hero-asymmetric {
        flex-direction: column;
        padding-top: 100px;
    }

    .hero-content-offset {
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .hero-image {
        max-width: 100%;
        height: 400px;
    }

    .insight-overlap {
        flex-direction: column;
        gap: 40px;
    }

    .insight-left {
        padding-right: 0;
    }

    .stat-card {
        transform: translateX(0) !important;
    }

    .story-image-float {
        float: none;
        width: 100%;
        margin: 0 0 30px 0;
    }

    .story-img {
        height: 400px;
    }

    .section-title-offset {
        font-size: 36px;
    }

    .problem-item.offset-top {
        margin-left: 0;
    }

    .services-asymmetric {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .service-card.offset-left {
        margin-left: 0;
    }

    .testimonial-card.offset {
        margin-left: 0;
    }

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

    .mechanism-img {
        max-width: 100%;
        height: 400px;
    }

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

    .sticky-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .philosophy-item {
        flex: 1 1 100%;
    }

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

    .results-stats {
        flex-direction: column;
        gap: 40px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

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

    .section-title-offset,
    .trust-title,
    .section-title-centered {
        font-size: 28px;
    }

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