* {
    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: #ffffff;
}

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

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

a:hover {
    color: #3498db;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1.2rem 0;
}

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

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2980b9;
}

.hero-story {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.92), rgba(142, 68, 173, 0.88)),
                url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?w=1600&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    margin-top: 60px;
}

.hero-overlay {
    text-align: center;
}

.hero-content-narrow {
    max-width: 820px;
    margin: 0 auto;
}

.hero-story h1 {
    font-size: 3.2rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.page-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(155, 89, 182, 0.85)),
                url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1400&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    margin-top: 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.intro-flow {
    background: #f8f9fa;
}

.intro-lead {
    font-size: 1.35rem;
    line-height: 1.75;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.intro-flow p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.problem-visual {
    background: #fff;
    padding: 6rem 0;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.problem-stat {
    display: flex;
    flex-direction: column;
    margin-top: 2.5rem;
    padding: 2rem;
    background: #fff3cd;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #555;
}

.story-turn {
    background: #ecf0f1;
}

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

.insight-reveal {
    background: #2c3e50;
    padding: 6rem 2rem;
}

.reveal-box {
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
}

.reveal-box h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.reveal-lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

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

.reveal-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reveal-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(41, 128, 185, 0.97);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    text-align: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.cta-btn-sticky {
    background: #fff;
    color: #2980b9;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.transformation-story {
    background: #f8f9fa;
    padding: 6rem 0;
}

.transformation-grid {
    display: flex;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.transform-before,
.transform-after {
    flex: 1;
    padding: 2.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.transform-before {
    border-top: 4px solid #e74c3c;
}

.transform-after {
    border-top: 4px solid #27ae60;
}

.transformation-grid h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.transform-emotion {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: #ecf0f1;
    border-left: 3px solid #95a5a6;
    font-style: italic;
    color: #555;
}

.trust-section {
    background: #fff;
    padding: 6rem 0;
}

.trust-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.testimonials-inline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    padding: 2rem 2.5rem;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

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

.testimonial-author {
    font-size: 1rem;
    color: #7f8c8d;
    font-style: italic;
}

.reality-check {
    background: #fff9e6;
    padding: 5rem 0;
}

.method-section {
    background: #fff;
    padding: 6rem 0;
}

.centered-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.method-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.method-step {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
    padding-top: 4rem;
}

.step-number {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    opacity: 0.3;
}

.method-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.method-step p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.benefits-reveal {
    background: #ecf0f1;
    padding: 6rem 0;
}

.benefit-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-block h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2980b9;
}

.benefit-block p {
    font-size: 1.1rem;
    color: #555;
}

.cta-section {
    background: #fff;
    padding: 6rem 2rem;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3.5rem;
    background: linear-gradient(135deg, #3498db, #8e44ad);
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-btn-primary {
    display: inline-block;
    background: #fff;
    color: #2980b9;
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #2980b9;
}

.services-pricing {
    background: #f8f9fa;
    padding: 6rem 0;
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card.featured {
    border: 3px solid #3498db;
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #e74c3c;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-desc {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 1.5rem;
}

.service-btn {
    background: #3498db;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.urgency-section {
    background: #fff;
    padding: 5rem 2rem;
}

.urgency-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem;
    background: #fff3cd;
    border-left: 5px solid #f39c12;
    border-radius: 4px;
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.urgency-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.form-section {
    background: #ecf0f1;
    padding: 6rem 2rem;
}

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

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

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    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: #3498db;
}

.form-group-checkbox {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
}

.form-group-checkbox label {
    font-size: 0.95rem;
    color: #555;
}

.form-submit {
    width: 100%;
    background: #3498db;
    color: #fff;
    padding: 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.final-cta {
    background: #2c3e50;
    color: #fff;
    padding: 6rem 2rem;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.cta-btn-secondary {
    background: #fff;
    color: #2c3e50;
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.footer {
    background: #34495e;
    color: #ecf0f1;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    font-size: 0.95rem;
    color: #bdc3c7;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    color: #ecf0f1;
    font-size: 0.95rem;
    flex: 1;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.about-intro {
    background: #f8f9fa;
}

.about-values {
    background: #fff;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.about-story {
    background: #ecf0f1;
}

.about-team {
    background: #fff;
}

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

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-big {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.about-approach {
    background: #f8f9fa;
}

.about-warranty {
    background: #fff;
    padding: 5rem 2rem;
}

.warranty-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem;
    background: #e8f5e9;
    border-left: 5px solid #27ae60;
    border-radius: 4px;
}

.warranty-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.warranty-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

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

.about-mission {
    background: #ecf0f1;
}

.about-cta {
    background: #fff;
    padding: 5rem 2rem;
}

.services-intro {
    margin-bottom: 3rem;
}

.services-list {
    background: #fff;
}

.service-detail-card {
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

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

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

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-tagline {
    font-size: 1.15rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.2rem;
}

.service-savings {
    font-size: 1.05rem;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-payback {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-price-display {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 1.5rem;
}

.service-detail-btn {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-detail-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-badge-inline {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.services-process {
    background: #f8f9fa;
    padding: 6rem 0;
}

.process-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.process-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.process-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.services-faq {
    background: #fff;
}

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

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

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

.services-cta {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.contact-section {
    background: #fff;
    padding: 5rem 0;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.map-placeholder {
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #bdc3c7;
}

.map-note {
    margin-top: 1rem;
    font-style: italic;
    color: #7f8c8d;
}

.contact-about-section {
    background: #f8f9fa;
}

.contact-coverage {
    background: #fff;
}

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

.coverage-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.coverage-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.coverage-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.coverage-item p {
    font-size: 1rem;
    color: #555;
}

.contact-response {
    background: #f8f9fa;
}

.response-block {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.response-block h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.response-block p {
    font-size: 1.05rem;
    color: #555;
}

.contact-cta {
    background: #fff;
    padding: 5rem 2rem;
}

.thanks-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    margin-top: 60px;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #27ae60;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.thanks-hero h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
}

.thanks-info {
    background: #fff;
}

.thanks-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.thanks-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #3498db;
}

.thanks-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-step p {
    font-size: 1.05rem;
    color: #555;
}

.thanks-service-info {
    margin-bottom: 2.5rem;
}

.service-confirm-box {
    padding: 2rem;
    background: #e8f5e9;
    border-left: 5px solid #27ae60;
    border-radius: 4px;
}

.service-confirm-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.8rem;
}

.thanks-note {
    padding: 1.5rem;
    background: #fff9e6;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.thanks-resources {
    background: #f8f9fa;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.resource-card h4 {
    margin-bottom: 0.8rem;
}

.resource-card h4 a {
    font-size: 1.3rem;
    color: #2980b9;
}

.resource-card p {
    font-size: 1rem;
    color: #555;
}

.thanks-testimonial {
    background: #fff;
}

.thanks-quote {
    padding: 2.5rem;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.thanks-quote p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.thanks-quote cite {
    font-size: 1rem;
    color: #7f8c8d;
    font-style: normal;
}

.legal-page {
    background: #fff;
    padding: 8rem 0 4rem;
    margin-top: 60px;
}

.legal-intro {
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

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

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-page p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-page ul li {
    margin-bottom: 0.6rem;
    color: #555;
    line-height: 1.6;
}

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

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

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

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

@media (max-width: 768px) {
    .hero-story h1 {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1.2rem;
    }

    .split-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .method-step {
        flex: 1 1 100%;
    }

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

    .service-card.featured {
        transform: scale(1);
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .nav-links {
        gap: 1rem;
    }

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

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

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

    .values-grid,
    .team-stats,
    .process-timeline,
    .coverage-grid,
    .resources-grid {
        flex-direction: column;
    }

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