/* 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 Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    color: #2196F3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 33, 33, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

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

.btn-cookie-accept:hover {
    background: #45a049;
}

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

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 30px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #FF6B6B;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

.nav-menu li a:hover {
    color: #FF6B6B;
    text-decoration: none;
}

/* Hero Section - Visual First */
.hero-visual {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.8), rgba(255, 179, 71, 0.7));
}

.hero-text-block {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 40px;
}

.hero-text-block h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    font-weight: 300;
}

.btn-hero {
    display: inline-block;
    padding: 18px 45px;
    background: #fff;
    color: #FF6B6B;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

/* Narrow Story Section */
.narrow-story {
    padding: 100px 20px;
    background: #f9f9f9;
}

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

.story-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #222;
}

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

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

/* Problem Block - Split Layout */
.problem-block {
    padding: 90px 20px;
    background: #2c3e50;
    color: #fff;
}

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

.problem-text {
    flex: 1;
    min-width: 300px;
}

.problem-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
}

.problem-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.problem-visual {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: #FFB347;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #ecf0f1;
}

/* Insight Reveal */
.insight-reveal {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.insight-container {
    max-width: 800px;
    margin: 0 auto;
}

.insight-container h2 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-container p {
    font-size: 20px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.insight-highlight {
    font-size: 28px;
    font-weight: 700;
    margin-top: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Trust Build Section */
.trust-build {
    padding: 90px 20px;
    background: #fff;
}

.trust-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
    padding: 30px;
}

.trust-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

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

/* Testimonial Inline */
.testimonial-inline {
    padding: 70px 20px;
    background: #fffbf0;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial {
    background: #fff;
    padding: 35px;
    border-left: 5px solid #FFB347;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

/* Benefit Visual Section */
.benefit-visual {
    padding: 80px 20px;
    background: #f5f5f5;
}

.benefit-flex {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.benefit-image {
    flex: 1;
    min-width: 300px;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.benefit-content {
    flex: 1;
    min-width: 300px;
}

.benefit-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #222;
}

.benefit-list {
    list-style: none;
    margin-bottom: 35px;
}

.benefit-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
    color: #444;
    line-height: 1.6;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
    font-size: 20px;
}

.btn-inline {
    display: inline-block;
    padding: 14px 35px;
    background: #FF6B6B;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-inline:hover {
    background: #ff5252;
    transform: translateY(-1px);
    text-decoration: none;
}

/* Value Stack */
.value-stack {
    padding: 80px 20px;
    background: #fff;
}

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

.value-container h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.value-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 40px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    line-height: 1.5;
}

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

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #222;
}

.services-intro {
    font-size: 18px;
    color: #666;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s;
}

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

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #FFB347;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.service-badge.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 700;
}

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

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

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

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

.service-price {
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.price-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #FF6B6B;
    margin-bottom: 5px;
}

.price-note {
    display: block;
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.btn-service {
    width: 100%;
    padding: 14px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #45a049;
    transform: translateY(-1px);
}

/* Urgency Block */
.urgency-block {
    padding: 60px 20px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: #fff;
}

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

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

.urgency-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-urgency {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    color: #FF6B6B;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.btn-urgency:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

/* Social Proof */
.social-proof {
    padding: 80px 20px;
    background: #fff;
}

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

.social-container h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.review-item {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
}

.review-stars {
    color: #FFB347;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-item p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

/* Guarantee Section */
.guarantee-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #fff;
}

.guarantee-flex {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.guarantee-text {
    flex: 2;
    min-width: 300px;
}

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

.guarantee-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.guarantee-highlight {
    font-size: 24px;
    font-weight: 700;
    margin-top: 25px;
}

.guarantee-badge {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
}

.badge-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.badge-text {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}

/* Final CTA / Form Section */
.final-cta {
    padding: 90px 20px;
    background: #f5f5f5;
}

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

.cta-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #222;
}

.cta-subtitle {
    font-size: 17px;
    color: #666;
    margin-bottom: 45px;
}

.order-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

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

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

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #FF6B6B;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #ff5252;
    transform: translateY(-1px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #fff;
}

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

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

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-question {
    font-size: 20px;
    color: #222;
    margin-bottom: 12px;
    font-weight: 600;
    cursor: pointer;
}

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

/* Footer */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

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

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

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

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

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: #FF6B6B;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.5);
    text-decoration: none;
}

/* Page-specific styles */
.page-hero {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    margin-top: 60px;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-lead {
    font-size: 20px;
    font-weight: 300;
}

/* About Page */
.about-story {
    padding: 80px 20px;
    background: #fff;
}

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

.story-block,
.mission-block,
.values-block,
.team-block,
.certificates-block {
    margin-bottom: 70px;
}

.story-block h2,
.mission-block h2,
.values-block h2,
.team-block h2,
.certificates-block h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #222;
}

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

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

.mission-list {
    list-style: none;
    margin-top: 20px;
}

.mission-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 17px;
    color: #444;
}

.mission-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
    font-size: 20px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #222;
    font-weight: 700;
}

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

.cert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 25px;
}

.cert-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    border: 2px solid #4CAF50;
    border-radius: 8px;
}

.cert-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #4CAF50;
    font-weight: 700;
}

.cert-item p {
    font-size: 15px;
    color: #666;
}

/* Services Page */
.services-page {
    padding: 80px 20px;
    background: #fff;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

.benefits-section {
    padding: 70px 20px;
    background: #f9f9f9;
}

.benefits-container h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 45px;
    font-weight: 700;
}

.benefits-flex {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.benefit-box {
    flex: 1;
    min-width: 220px;
    max-width: 250px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
    font-weight: 700;
}

.benefit-box p {
    font-size: 14px;
    color: #666;
}

/* Contact Page */
.contact-page {
    padding: 80px 20px;
    background: #fff;
}

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

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

.info-block {
    margin-bottom: 40px;
}

.info-block h2 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #222;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #333;
}

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

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

.contact-map h2 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #222;
}

.contact-map p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.map-placeholder {
    background: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 80px 30px;
    text-align: center;
}

.map-placeholder p {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.map-note {
    font-size: 14px;
    color: #999;
}

/* Thanks Page */
.thanks-page {
    padding: 100px 20px;
    background: #f9f9f9;
    min-height: 70vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #222;
}

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

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

.thanks-info p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.steps-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
}

.steps-list li {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: #FF6B6B;
    color: #fff;
}

.btn-primary:hover {
    background: #ff5252;
    text-decoration: none;
}

.btn-secondary {
    background: #f5f5f5;
    color: #333;
    border: 2px solid #ddd;
}

.btn-secondary:hover {
    background: #e8e8e8;
    text-decoration: none;
}

/* Legal Pages */
.legal-page {
    padding: 80px 20px;
    background: #fff;
}

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

.legal-container h1 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #222;
}

.last-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
}

.legal-section h3 {
    font-size: 20px;
    margin: 25px 0 12px;
    font-weight: 600;
    color: #444;
}

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

.legal-section ul {
    margin: 15px 0 15px 25px;
}

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

/* CTA Section (reusable) */
.cta-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

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

.cta-box p {
    font-size: 17px;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #FF6B6B;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .hero-text-block h1 {
        font-size: 32px;
    }

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

    .story-container h2 {
        font-size: 28px;
    }

    .story-container p {
        font-size: 17px;
    }

    .problem-text h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 42px;
    }

    .insight-container h2 {
        font-size: 28px;
    }

    .services-header h2 {
        font-size: 30px;
    }

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

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

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

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

@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 26px;
    }

    .btn-hero {
        padding: 14px 30px;
        font-size: 16px;
    }

    .story-container h2 {
        font-size: 24px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}