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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    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;
}

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

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

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

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

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

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

/* Header */
.header-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

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

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

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

.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%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

/* Hero Section */
.hero-immersive {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.7), rgba(44, 62, 80, 0.8));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

.cta-hero {
    display: inline-block;
    padding: 18px 40px;
    background: #ffffff;
    color: #2c3e50;
    font-weight: 600;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

/* Story Section */
.story-intro {
    padding: 120px 20px;
    background: #f8f9fa;
}

.story-intro h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #2c3e50;
}

.story-intro p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.story-image {
    margin: 50px 0;
    border-radius: 8px;
    width: 100%;
}

/* Problem Amplification */
.problem-amplification {
    padding: 120px 20px;
    background: #ffffff;
}

.split-content {
    flex: 1;
}

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

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

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    color: #555;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 20px;
    font-weight: 700;
}

.insight-text {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 30px;
    padding: 25px;
    background: #ecf0f1;
    border-left: 4px solid #3498db;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    width: 100%;
}

/* Revelation Section */
.revelation {
    padding: 120px 20px;
    background: #2c3e50;
    color: #ffffff;
}

.revelation h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.revelation > div > p {
    text-align: center;
    font-size: 20px;
    margin-bottom: 60px;
    opacity: 0.9;
}

.revelation-grid {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 50px;
}

.revelation-item {
    flex: 1;
}

.revelation-item img {
    border-radius: 8px;
    margin-bottom: 20px;
}

.revelation-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.revelation-item p {
    font-size: 16px;
    opacity: 0.9;
}

/* Trust Builder */
.trust-builder {
    padding: 120px 20px;
    background: #f8f9fa;
}

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

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

.testimonial cite {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

/* CTA Immersive */
.cta-immersive {
    padding: 120px 20px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #ffffff;
    text-align: center;
    position: relative;
}

.cta-immersive h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.cta-large {
    display: inline-block;
    padding: 20px 50px;
    background: #ffffff;
    color: #2c3e50;
    font-weight: 700;
    border-radius: 50px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Services Reveal */
.services-reveal {
    padding: 120px 20px;
    background: #ffffff;
}

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

.services-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 80px;
    color: #555;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    flex-direction: row;
    gap: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 45%;
    object-fit: cover;
}

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-desc,
.service-content > p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.service-features span {
    background: #3498db;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

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

.btn-select-service {
    padding: 15px 30px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

/* Urgency Soft */
.urgency-soft {
    padding: 100px 20px;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.urgency-soft h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.urgency-soft p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #555;
}

.cta-inline {
    display: inline-block;
    padding: 15px 35px;
    background: #ffc107;
    color: #2c3e50;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #ffb300;
    transform: translateY(-2px);
}

/* Form Section */
.form-section {
    padding: 120px 20px;
    background: #f8f9fa;
}

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

.form-section > div > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    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;
}

.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: 4px;
    cursor: pointer;
}

.checkbox-group a {
    color: #3498db;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #2ecc71;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final CTA */
.final-cta {
    padding: 120px 20px;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.cta-large-alt {
    display: inline-block;
    padding: 20px 50px;
    background: #2ecc71;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-large-alt:hover {
    background: #27ae60;
    transform: translateY(-3px);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #3498db;
    color: #ffffff;
    padding: 20px;
    z-index: 999;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

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

.sticky-content span {
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    padding: 12px 30px;
    background: #ffffff;
    color: #3498db;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #f8f9fa;
}

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

.footer-grid {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

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

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

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

/* Page Hero */
.page-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #ffffff;
    text-align: center;
}

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

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

.about-hero {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

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

.service-detail-card {
    display: flex;
    flex-direction: row;
    gap: 50px;
    margin-bottom: 80px;
    align-items: flex-start;
}

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

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

.service-detail-image img {
    border-radius: 12px;
    width: 100%;
}

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

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

.service-specifications,
.service-includes {
    margin: 30px 0;
}

.service-specifications h3,
.service-includes h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-specifications ul,
.service-includes ul {
    list-style: none;
}

.service-specifications ul li,
.service-includes ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-specifications ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
}

.service-includes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-size: 18px;
    font-weight: 700;
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 30px 0;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Services CTA */
.services-cta {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.btn-large {
    display: inline-block;
    padding: 18px 45px;
    background: #2ecc71;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

/* About Story */
.about-story {
    padding: 100px 20px;
    background: #ffffff;
}

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

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

/* Values */
.values {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

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

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

.value-icon {
    margin-bottom: 20px;
}

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

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

/* Team */
.team {
    padding: 100px 20px;
    background: #ffffff;
}

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

.team-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #555;
}

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

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

.team-member img {
    border-radius: 50%;
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin: 0 auto 20px;
}

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

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

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

/* Commitment */
.commitment {
    padding: 100px 20px;
    background: #f8f9fa;
}

.commitment h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.commitment p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
}

.commitment-list {
    list-style: none;
    margin: 30px 0;
}

.commitment-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 17px;
    color: #555;
}

.commitment-list li::before {
    content: '🌱';
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* Numbers */
.numbers {
    padding: 100px 20px;
    background: #3498db;
    color: #ffffff;
}

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

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

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

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

.number-card p {
    font-size: 18px;
    opacity: 0.95;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: #f8f9fa;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

/* Contact Content */
.contact-content {
    padding: 80px 20px;
}

.contact-layout {
    display: flex;
    flex-direction: row;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

.contact-info > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

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

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

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

.contact-detail a {
    color: #3498db;
    text-decoration: underline;
}

.contact-detail .note {
    font-size: 14px;
    font-style: italic;
    opacity: 0.8;
}

.contact-map {
    margin-top: 40px;
}

.contact-map img {
    border-radius: 12px;
    width: 100%;
}

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

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-form-wrapper > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

.form-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 15px;
    text-align: center;
}

/* Visit Us */
.visit-us {
    padding: 100px 20px;
    background: #f8f9fa;
}

.visit-us h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.visit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.visit-reason {
    flex: 1;
    min-width: 250px;
}

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

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

.visit-us .btn-large {
    display: block;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

/* FAQ Contact */
.faq-contact {
    padding: 100px 20px;
    background: #ffffff;
}

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

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

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

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

/* Legal Page */
.legal-page {
    padding: 150px 20px 80px;
    background: #ffffff;
}

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

.legal-intro {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-page ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-date {
    margin-top: 40px;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

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

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 20px;
}

.thanks-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 60px 40px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.thanks-icon {
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.thanks-message strong {
    color: #2c3e50;
}

.thanks-list {
    list-style: none;
    text-align: left;
    margin: 30px auto;
    max-width: 450px;
}

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

.thanks-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-size: 20px;
    font-weight: 700;
}

.thanks-note {
    font-size: 16px;
    margin: 30px 0;
    color: #7f8c8d;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 40px 0 30px;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    background: #f8f9fa;
    color: #2c3e50;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.thanks-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.thanks-contact p {
    font-size: 14px;
    color: #7f8c8d;
}

.thanks-contact a {
    color: #3498db;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

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

    .menu-toggle {
        display: flex;
    }

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

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

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

    .revelation-grid {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card img {
        width: 100%;
    }

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

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

    .sticky-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

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

    .values-grid {
        flex-direction: column;
    }

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

    .numbers-grid {
        flex-direction: column;
    }

    .visit-grid {
        flex-direction: column;
    }
}

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

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

    .story-intro h2,
    .split-content h2,
    .revelation h2,
    .trust-builder h2 {
        font-size: 28px;
    }

    .service-content {
        padding: 30px 20px;
    }

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

    .thanks-container {
        padding: 40px 30px;
    }

    .thanks-container h1 {
        font-size: 28px;
    }
}
