/* 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;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c0392b;
}

ul {
    list-style-position: inside;
}

/* Navigation */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #e74c3c;
    letter-spacing: -1px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

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

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

.nav-menu li {
    list-style: none;
    padding: 0.5rem 1.5rem;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #e74c3c;
}

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

.sticky-btn {
    background: #e74c3c;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

/* Hero Section */
.hero-visual {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-overlay p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23667eea" width="1200" height="600"/><path fill="%23764ba2" opacity="0.3" d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

/* Intro Story Section */
.intro-story {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

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

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
}

/* Split Layout Sections */
.split-layout {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.problem-text,
.journey-text {
    padding: 3rem 1.5rem;
}

.problem-text h3,
.journey-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.problem-text p,
.journey-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.problem-image,
.journey-image {
    min-height: 300px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23f5576c" width="800" height="600"/><circle fill="%23f093fb" opacity="0.5" cx="400" cy="300" r="200"/></svg>');
    background-size: cover;
    background-position: center;
}

/* Insight Section */
.insight-section {
    padding: 4rem 1.5rem;
    background: #fff;
}

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

.insight-container h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.insight-container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #7f8c8d;
}

.insight-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #e74c3c;
}

.point strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.point p {
    color: #34495e;
    margin: 0;
}

/* Testimonials */
.testimonial-flow {
    padding: 4rem 1.5rem;
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.testimonial {
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

.testimonial cite {
    display: block;
    text-align: right;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

/* Visual Break */
.visual-break {
    display: flex;
    flex-direction: column;
    background: #34495e;
}

.break-image {
    min-height: 250px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%234facfe" width="800" height="400"/><polygon fill="%2300f2fe" opacity="0.5" points="0,400 800,400 800,200 0,100"/></svg>');
    background-size: cover;
}

.break-text {
    padding: 3rem 1.5rem;
    color: #fff;
    text-align: center;
}

.break-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.break-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Benefits Section */
.benefits-deep {
    padding: 4rem 1.5rem;
    background: #fff;
}

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

.benefits-container h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.benefit-card p {
    color: #34495e;
    line-height: 1.7;
}

/* CTA Sections */
.cta-middle,
.cta-content,
.about-cta,
.services-cta,
.contact-cta {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #667eea;
}

/* Trust Elements */
.trust-elements {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.trust-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.trust-item strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.trust-item p {
    color: #7f8c8d;
    margin: 0;
}

/* Offer Section */
.offer-reveal {
    padding: 4rem 1.5rem;
    background: #fff;
}

.offer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.offer-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.offer-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-image {
    height: 200px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300"><rect fill="%23fa709a" width="600" height="300"/><ellipse fill="%23fee140" opacity="0.4" cx="300" cy="150" rx="200" ry="100"/></svg>');
    background-size: cover;
    background-position: center;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.6rem;
    color: #2c3e50;
}

.service-card > p {
    padding: 0 1.5rem;
    color: #34495e;
    line-height: 1.7;
}

.service-features {
    padding: 1rem 1.5rem;
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

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

.price {
    padding: 1rem 1.5rem;
    font-size: 2rem;
    font-weight: 900;
    color: #e74c3c;
}

.select-service-btn {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Urgency Block */
.urgency-block {
    padding: 3rem 1.5rem;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

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

.urgency-content h3 {
    font-size: 1.8rem;
    color: #856404;
    margin-bottom: 1rem;
}

.urgency-content p {
    color: #856404;
    font-size: 1.05rem;
    line-height: 1.7;
}

.urgency-content strong {
    color: #721c24;
}

/* Form Section */
.form-section {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.form-description {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 1rem;
    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: #667eea;
}

.submit-btn {
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* Final Trust Section */
.final-trust {
    padding: 4rem 1.5rem;
    background: #fff;
    text-align: center;
}

.final-trust-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-trust-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.final-trust-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1.5rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-btn.reject {
    background: #95a5a6;
    color: #fff;
}

.cookie-btn.reject:hover {
    background: #7f8c8d;
}

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

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* About Page Specific */
.about-intro,
.about-philosophy,
.about-team,
.about-values {
    padding: 4rem 1.5rem;
}

.about-intro {
    background: #fff;
}

.about-journey {
    background: #f8f9fa;
}

.about-philosophy {
    background: #fff;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.philosophy-item h4 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.about-team {
    background: #f8f9fa;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.team-member strong {
    display: block;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.team-member span {
    display: block;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: #7f8c8d;
    margin: 0;
}

.values-list {
    list-style: none;
    margin-top: 2rem;
}

.values-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #ecf0f1;
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* Services Page Specific */
.services-intro,
.services-guarantee {
    padding: 4rem 1.5rem;
    background: #fff;
}

.services-catalog {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.catalog-container {
    max-width: 1100px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-visual {
    height: 250px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%23a8edea" width="800" height="400"/><circle fill="%23fed6e3" opacity="0.6" cx="600" cy="200" r="150"/></svg>');
    background-size: cover;
}

.service-info {
    padding: 2.5rem;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 900;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 2rem;
}

.service-info h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.service-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-info ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.service-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.5rem;
}

.order-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.order-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.guarantee-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.guarantee-item strong {
    display: block;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.guarantee-item p {
    color: #7f8c8d;
    margin: 0;
}

/* Contact Page Specific */
.contact-main {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.info-block p {
    color: #34495e;
    line-height: 1.7;
}

.info-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-map {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.map-placeholder p {
    margin: 0.5rem 0;
}

.map-address {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-faq {
    padding: 4rem 1.5rem;
    background: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ecf0f1;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #7f8c8d;
    line-height: 1.7;
    margin: 0;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.legal-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.update-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: block;
}

.legal-container h2 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-container p {
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-container ul li {
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #dfe6e9;
}

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

.cookies-table td {
    color: #34495e;
}

/* Thanks Page */
.thanks-hero {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
    min-height: 70vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #fff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.order-summary {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.order-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.summary-details p {
    text-align: left;
    margin: 0.75rem 0;
    color: #34495e;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    text-align: left;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #667eea;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step p {
    color: #7f8c8d;
    margin: 0;
}

.thanks-info {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.thanks-info p {
    margin: 0.5rem 0;
    color: #34495e;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

.btn-secondary {
    background: #fff;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: #fff;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
    }

    .nav-menu li {
        padding: 0 1rem;
    }

    .hero-overlay h1 {
        font-size: 3.5rem;
    }

    .split-layout {
        flex-direction: row;
    }

    .problem-text,
    .journey-text,
    .problem-image,
    .journey-image {
        flex: 1;
    }

    .service-detail.reverse .service-visual {
        order: 2;
    }

    .service-detail.reverse .service-info {
        order: 1;
    }

    .insight-points {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .point {
        flex: 0 0 calc(50% - 1rem);
    }

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

    .benefit-card {
        flex: 0 0 calc(50% - 1rem);
    }

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

    .trust-item {
        flex: 0 0 calc(50% - 1rem);
    }

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

    .service-card {
        flex: 0 0 calc(50% - 1.5rem);
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

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

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

    .philosophy-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .guarantee-points {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .guarantee-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

    .contact-info,
    .contact-map {
        flex: 1;
    }

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

    .step {
        flex: 0 0 calc(50% - 1rem);
    }

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

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

    .service-visual {
        flex: 0 0 40%;
    }

    .service-info {
        flex: 1;
    }

    .visual-break {
        flex-direction: row;
    }

    .break-image {
        flex: 1;
    }

    .break-text {
        flex: 1;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .hero-overlay h1 {
        font-size: 4rem;
    }

    .service-card {
        flex: 0 0 calc(33.333% - 2rem);
    }
}