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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

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

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

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

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

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

.nav-links {
    display: none;
}

.nav-links a {
    margin-left: 30px;
    font-weight: 500;
    color: #2c3e50;
}

.nav-links a:hover {
    color: #3498db;
}

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

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

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    padding: 20px;
    z-index: 999;
}

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

.mobile-menu a {
    padding: 15px 0;
    border-bottom: 1px solid #ecf0f1;
    font-weight: 500;
}

/* Hero Sections */
.hero-story {
    margin-top: 70px;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
}

.hero-overlay {
    text-align: center;
    color: #ffffff;
    padding: 40px 20px;
    z-index: 1;
}

.hero-story h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero {
    margin-top: 70px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2c3e50;
}

.hero-lead {
    font-size: 22px;
    color: #34495e;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-legal {
    margin-top: 70px;
    padding: 60px 20px;
    background: #ecf0f1;
    text-align: center;
}

.page-hero-legal h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
}

.legal-date {
    color: #7f8c8d;
    font-size: 14px;
    margin-top: 10px;
}

/* Story Sections */
.story-intro {
    padding: 80px 20px;
    background: #ffffff;
}

.story-lead {
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.story-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
}

.problem-amplify {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

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

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

.problem-list {
    list-style: none;
    padding-left: 0;
}

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

.problem-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 24px;
}

.split-image {
    width: 100%;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
}

/* Insight Section */
.insight-section {
    padding: 80px 20px;
    background: #2c3e50;
    color: #ffffff;
}

.center-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.insight-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.insight-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin-top: 40px;
}

.insight-highlight {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.insight-author {
    font-size: 14px;
    opacity: 0.8;
}

/* Story Sections */
.story-transition {
    padding: 80px 20px;
    background: #ffffff;
}

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

.story-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.story-emphasis {
    font-size: 20px;
    font-weight: 600;
    color: #3498db;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 8px;
    margin-top: 30px;
}

/* CTA Inline */
.cta-inline {
    padding: 40px 20px;
    background: #ecf0f1;
    text-align: center;
}

/* Trust Building */
.trust-building {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

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

.trust-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

/* Testimonials */
.testimonials-flow {
    padding: 80px 20px;
    background: #ffffff;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #3498db;
}

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

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
}

.testimonial-author strong {
    color: #2c3e50;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.benefit-block h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.benefit-stat {
    font-size: 32px;
    font-weight: 700;
    margin: 15px 0;
    color: #ffd700;
}

.benefit-block p {
    font-size: 16px;
    line-height: 1.7;
}

/* Social Proof */
.social-proof {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.social-proof h3 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.stats-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.stat-label {
    font-size: 16px;
    color: #7f8c8d;
}

/* Services & Pricing */
.services-pricing {
    padding: 80px 20px;
    background: #ffffff;
}

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

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: #ffffff;
    border: 2px solid #ecf0f1;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border-color: #3498db;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.service-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #2c3e50;
}

.service-description {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

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

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

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: #2c3e50;
    margin: 25px 0;
}

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

.btn-select:hover {
    background: #2980b9;
    transform: scale(1.02);
}

/* Urgency Section */
.urgency-section {
    padding: 60px 20px;
    background: #fff3cd;
}

.urgency-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #f39c12;
}

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

.urgency-box p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.urgency-note {
    color: #e74c3c;
    font-weight: 600;
}

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

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

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

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

.btn-submit:hover {
    background: #229954;
    transform: scale(1.02);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

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

.btn-primary-large {
    background: #27ae60;
    color: #ffffff;
    font-size: 18px;
    padding: 18px 45px;
}

.btn-primary-large:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.3);
}

/* Final CTA */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #3498db;
}

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    font-size: 14px;
}

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(52, 152, 219, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
}

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

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

.sticky-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.btn-sticky {
    background: #ffffff;
    color: #3498db;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}

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

/* 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: 1001;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

/* Thanks Page */
.thanks-hero {
    margin-top: 70px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.thanks-hero h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.thanks-lead {
    font-size: 20px;
}

.thanks-content {
    padding: 80px 20px;
    background: #ffffff;
}

.thanks-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-box h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.thanks-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #7f8c8d;
}

.selected-service-info {
    margin-top: 40px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.selected-service-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-thanks {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

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

.thanks-info {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 2px solid #ecf0f1;
}

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

.thanks-info ul {
    list-style: none;
}

.thanks-info li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.thanks-info li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

.thanks-cta p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #7f8c8d;
}

.thanks-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-proof-thanks {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.social-proof-thanks h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.testimonial-small {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    border-left: 4px solid #3498db;
}

.testimonial-small p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 10px;
    color: #2c3e50;
}

.testimonial-small span {
    font-size: 14px;
    color: #7f8c8d;
}

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

.about-story h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #2c3e50;
}

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

.highlight-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    margin: 40px 0;
}

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

.highlight-box span {
    font-size: 14px;
    color: #7f8c8d;
}

.mission {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

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

.mission-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

.values {
    padding: 80px 20px;
    background: #ffffff;
}

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

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #3498db;
}

.value-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
}

.team {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

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

.team-intro {
    font-size: 18px;
    margin-bottom: 50px;
    color: #7f8c8d;
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 48px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #7f8c8d;
}

.approach {
    padding: 80px 20px;
    background: #ffffff;
}

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

.approach p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #34495e;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #7f8c8d;
    margin: 0;
}

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Services Page Specific */
.services-intro {
    padding: 40px 20px;
    background: #ffffff;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    color: #34495e;
}

.services-detailed {
    padding: 60px 20px;
    background: #f8f9fa;
}

.service-detail {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-header h2 {
    font-size: 32px;
    color: #2c3e50;
}

.price-tag {
    font-size: 36px;
    font-weight: 800;
    color: #3498db;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-tagline {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

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

.detailed-list {
    list-style: none;
}

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

.detailed-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

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

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

.service-action {
    margin-top: 30px;
    text-align: center;
}

.testimonial-inline {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    border-left: 4px solid #3498db;
}

.testimonial-inline p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-inline span {
    font-size: 14px;
    color: #7f8c8d;
}

.comparison {
    padding: 80px 20px;
    background: #ffffff;
}

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

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

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    border: 1px solid #ecf0f1;
    text-align: center;
}

.comparison-table th {
    background: #34495e;
    color: #ffffff;
    font-weight: 600;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.warranty {
    padding: 60px 20px;
    background: #f8f9fa;
}

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

.warranty p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

.warranty-list {
    list-style: none;
    margin-bottom: 30px;
}

.warranty-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.warranty-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.warranty-extra {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

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

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

.contact-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

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

.contact-card p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #34495e;
}

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

.contact-card a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 10px;
}

.faq {
    padding: 80px 20px;
    background: #ffffff;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
}

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

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

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

.map-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.map-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 18px;
    margin: 10px 0;
}

.map-note {
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
}

/* Legal Pages */
.legal-content {
    padding: 60px 20px;
    background: #ffffff;
}

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

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

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

.legal-content strong {
    color: #2c3e50;
}

.legal-list {
    list-style: none;
    margin: 20px 0;
}

.legal-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.legal-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.info-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin: 20px 0;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    overflow-x: auto;
    display: block;
}

.gdpr-table table,
.cookies-table table {
    width: 100%;
    min-width: 600px;
}

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

.gdpr-table th,
.cookies-table th {
    background: #34495e;
    color: #ffffff;
    font-weight: 600;
}

.gdpr-table td,
.cookies-table td {
    font-size: 15px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero-story h1 {
        font-size: 56px;
    }

    .split-content {
        flex-direction: row;
        align-items: center;
    }

    .split-text,
    .split-image {
        flex: 1;
    }

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

    .trust-card {
        flex: 1 1 calc(50% - 15px);
    }

    .benefits-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-block {
        flex: 1 1 calc(50% - 15px);
    }

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

    .stat-item {
        flex: 1;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

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

    .footer-col {
        flex: 1;
    }

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

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

    .mission-card {
        flex: 1 1 calc(50% - 15px);
    }

    .team-stats {
        flex-direction: row;
    }

    .stat-box {
        flex: 1;
    }

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

    .contact-card {
        flex: 1;
    }

    .sticky-cta {
        display: block;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }

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

    .service-info {
        flex: 2;
    }

    .service-image {
        flex: 1;
    }
}