* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

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

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

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

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

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

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

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

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

.btn-reject:hover {
    background: #fff;
    color: #2c3e50;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

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

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(231, 76, 60, 0.6);
}

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

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

.hero-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-lead {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #e74c3c;
    color: #fff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.intro-hook {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

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

.hook-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.4;
}

.hook-content p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.story-section {
    padding: 6rem 2rem;
}

.story-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

.story-image {
    flex: 1;
    min-width: 300px;
}

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

.problem-reveal {
    padding: 5rem 2rem;
    background: #34495e;
    color: #fff;
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
}

.problem-content h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.problem-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.problem-item .icon {
    font-size: 1.5rem;
    color: #e74c3c;
    font-weight: 700;
}

.problem-item p {
    font-size: 1.1rem;
    flex: 1;
}

.problem-conclusion {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
}

.insight-section {
    padding: 6rem 2rem;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.insight-image {
    flex: 1;
    min-width: 300px;
}

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

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

.insight-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.inline-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #e74c3c;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
}

.inline-cta:hover {
    background: #c0392b;
}

.trust-building {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.trust-container h3 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-box {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 1.1rem;
}

.testimonials-inline {
    padding: 6rem 2rem;
}

.testimonials-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
    color: #34495e;
}

.testimonial-author {
    font-weight: 600;
    color: #7f8c8d;
}

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

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

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

.benefits-flow {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.benefit-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.benefit-block.reverse {
    flex-direction: row-reverse;
}

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

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

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

.benefit-content h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.offer-reveal {
    padding: 6rem 2rem;
}

.offer-header {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.offer-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.offer-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.pricing-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    border-color: #e74c3c;
    background: linear-gradient(135deg, #fff 0%, #ffe5e5 100%);
    box-shadow: 0 10px 40px rgba(231, 76, 60, 0.2);
}

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

.price-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-desc {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #ecf0f1;
    color: #555;
}

.price-features li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: 700;
    margin-right: 0.5rem;
}

.btn-price {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #e74c3c;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-price:hover {
    background: #c0392b;
}

.urgency-section {
    padding: 4rem 2rem;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

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

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

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

.urgency-highlight {
    font-weight: 700;
    font-size: 1.3rem;
    color: #e74c3c;
}

.cta-urgency {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.cta-urgency:hover {
    background: #c0392b;
    transform: scale(1.05);
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.reservation-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.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 1.2rem;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-push {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
}

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

.final-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.final-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #e74c3c;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-final:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

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

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

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

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

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

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

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

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

.page-hero-content p {
    font-size: 1.3rem;
}

.about-story {
    padding: 5rem 2rem;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-block {
    flex: 1;
    min-width: 300px;
}

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

.story-block p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.story-image-block {
    flex: 1;
    min-width: 300px;
}

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

.about-evolution {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

.evolution-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.timeline-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.timeline-year {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: #555;
    line-height: 1.6;
}

.team-values {
    padding: 5rem 2rem;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

.value-card p {
    color: #555;
    line-height: 1.6;
}

.mission-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.mission-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mission-content .cta-inline {
    background: #fff;
    color: #667eea;
    margin-top: 2rem;
}

.mission-content .cta-inline:hover {
    background: #ecf0f1;
}

.services-intro {
    padding: 4rem 2rem;
    background: #ecf0f1;
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro-content p {
    font-size: 1.1rem;
    color: #555;
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-image {
    flex: 1;
    min-width: 300px;
}

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

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

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
}

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

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

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

.service-features li {
    padding: 0.5rem 0;
    color: #555;
}

.service-features li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: 700;
    margin-right: 0.5rem;
}

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

.btn-service:hover {
    background: #c0392b;
}

.additional-services {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.additional-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.additional-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.additional-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.additional-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.additional-card p {
    color: #555;
    line-height: 1.6;
}

.comparison-table {
    padding: 4rem 2rem;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.comparison {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

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

.comparison th {
    background: #2c3e50;
    color: #fff;
    font-weight: 700;
}

.comparison tr:hover {
    background: #f8f9fa;
}

.cta-services {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.cta-services-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-services-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #667eea;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.contact-main {
    padding: 5rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-detail p {
    color: #555;
    line-height: 1.7;
}

.contact-detail a {
    color: #e74c3c;
    transition: color 0.3s;
}

.contact-detail a:hover {
    color: #c0392b;
}

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

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

.faq-section {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

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

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
}

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

.faq-item p {
    color: #555;
    line-height: 1.6;
}

.cta-contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
}

.cta-contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-contact-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-contact-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-contact-content .btn-cta-large {
    background: #fff;
    color: #e74c3c;
}

.thanks-hero {
    padding: 8rem 2rem 6rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

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

.thanks-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

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

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

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

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item p {
    color: #555;
}

.thanks-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s;
}

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

.thanks-social {
    padding: 4rem 2rem;
    background: #ecf0f1;
}

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

.social-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.social-content p {
    font-size: 1.1rem;
    color: #555;
}

.legal-page {
    padding: 8rem 2rem 4rem;
}

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

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

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

.legal-content {
    line-height: 1.8;
}

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

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

.legal-content p {
    margin-bottom: 1rem;
    color: #555;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-content a {
    color: #e74c3c;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #c0392b;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-lead {
        font-size: 1.1rem;
    }

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .benefit-block,
    .benefit-block.reverse {
        flex-direction: column;
    }

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

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .page-hero-content p {
        font-size: 1.1rem;
    }

    .comparison th,
    .comparison td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}
