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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    color: #134152;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.cookie-content a {
    color: #7ec8e3;
    text-decoration: underline;
}

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

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

.btn-cookie-accept {
    background: #1a5f7a;
    color: #ffffff;
}

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

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

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

/* Navigation - Floating Style */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-floating .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
}

.nav-brand a {
    color: #2c2c2c;
}

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

.nav-menu a {
    color: #2c2c2c;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a5f7a;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-image-container {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #ffffff;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 900px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    max-width: 700px;
    font-weight: 300;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.cta-hero {
    display: inline-block;
    padding: 18px 48px;
    background: #1a5f7a;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(26, 95, 122, 0.4);
}

.cta-hero:hover {
    background: #134152;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(26, 95, 122, 0.6);
}

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

.story-lead {
    font-size: 24px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    text-align: center;
    font-weight: 300;
}

/* Visual Block Layouts */
.visual-block-left,
.visual-block-right {
    padding: 100px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.visual-block-left {
    flex-direction: row;
}

.visual-block-right {
    flex-direction: row-reverse;
    background: #fafbfc;
}

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

.content-side h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #2c2c2c;
}

.content-side p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

.image-side img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Trust Section */
.trust-section {
    padding: 80px 20px;
    background: #1a5f7a;
    color: #ffffff;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

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

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Scenario Section */
.scenario-section {
    padding: 100px 20px;
    background: #ffffff;
}

.section-title-center {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: #2c2c2c;
}

.scenario-text {
    margin-bottom: 40px;
}

.scenario-text p {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 24px;
    color: #444;
}

.cta-inline {
    display: inline-block;
    padding: 16px 40px;
    background: #2c2c2c;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials-inline {
    padding: 100px 20px;
    background: #f8f9fa;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

.testimonial-item {
    padding: 40px;
    background: #ffffff;
    border-left: 4px solid #1a5f7a;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

/* Insight Section */
.insight-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.insight-text {
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 24px;
    text-align: center;
}

/* Urgency Block */
.urgency-block {
    padding: 80px 20px;
    background: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

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

.urgency-content p {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-urgency {
    display: inline-block;
    padding: 18px 48px;
    background: #e63946;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-urgency:hover {
    background: #d62828;
    transform: translateY(-2px);
}

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

.services-intro {
    font-size: 19px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #555;
    line-height: 1.8;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 400px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.service-card.featured {
    border: 3px solid #1a5f7a;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e63946;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px;
    font-weight: 700;
    color: #2c2c2c;
}

.service-card > p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 24px 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 24px;
}

.service-features span {
    font-size: 14px;
    color: #666;
    padding-left: 20px;
    position: relative;
}

.service-features span::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #1a5f7a;
    margin: 20px 24px;
}

.btn-select-service {
    margin: 0 24px 24px;
    padding: 14px 32px;
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #134152;
}

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

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    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: #1a5f7a;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #555;
    cursor: pointer;
}

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

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

.btn-submit:hover {
    background: #134152;
}

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.final-cta p {
    font-size: 19px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-final {
    display: inline-block;
    padding: 18px 48px;
    background: #1a5f7a;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: #134152;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 60px 20px 30px;
    background: #1a1a1a;
    color: #cccccc;
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

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

.footer-col ul li a {
    color: #cccccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

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

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

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

.sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background: #e63946;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #d62828;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(230, 57, 70, 0.6);
}

/* Page Hero */
.page-hero,
.page-hero-small {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero-small {
    padding: 120px 20px 60px;
}

.page-hero h1,
.page-hero-small h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    font-weight: 300;
}

/* Content Section */
.content-section {
    padding: 80px 20px;
}

.story-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2c2c2c;
}

.story-content h2:first-child {
    margin-top: 0;
}

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

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

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.team-member {
    flex: 1 1 calc(25% - 30px);
    min-width: 250px;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #2c2c2c;
}

.team-role {
    font-size: 15px;
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: #1a5f7a;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #1a5f7a;
    font-size: 17px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Services Detailed */
.services-detailed {
    padding: 60px 20px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding-bottom: 80px;
    border-bottom: 1px solid #eee;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #2c2c2c;
}

.price-tag {
    display: inline-block;
    font-size: 28px;
    font-weight: 800;
    color: #1a5f7a;
    background: #f0f8fa;
    padding: 8px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.featured-price {
    background: #1a5f7a;
    color: #ffffff;
}

.badge-popular {
    display: inline-block;
    background: #e63946;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 12px;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #2c2c2c;
}

.service-includes {
    list-style: none;
    margin-bottom: 24px;
}

.service-includes li {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

.btn-order {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 36px;
    background: #1a5f7a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background: #134152;
}

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

.faq-item {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #2c2c2c;
}

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

/* Contact Section */
.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #2c2c2c;
}

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

.contact-item a {
    color: #1a5f7a;
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

.map-placeholder {
    position: relative;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    border-radius: 8px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 95, 122, 0.95);
    color: #ffffff;
    padding: 20px;
}

.map-overlay p {
    font-size: 14px;
    margin-bottom: 8px;
}

.map-overlay p:last-child {
    margin-bottom: 0;
}

.transport-info {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
}

.transport-info h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #2c2c2c;
}

.transport-info ul {
    list-style: none;
    margin-bottom: 20px;
}

.transport-info ul:last-child {
    margin-bottom: 0;
}

.transport-info li {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
}

.transport-info li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5f7a;
}

/* Thanks Page */
.thanks-hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.thanks-subtitle {
    font-size: 20px;
    margin-bottom: 60px;
    font-weight: 300;
}

.thanks-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.thanks-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.thanks-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.thanks-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.thanks-step p {
    font-size: 15px;
    line-height: 1.6;
}

.selected-service-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 17px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.thanks-contact {
    text-align: center;
}

.thanks-contact h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.thanks-contact a {
    color: #ffffff;
    text-decoration: underline;
}

/* Next Steps */
.next-steps {
    padding: 80px 20px;
    background: #f8f9fa;
}

.next-steps-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.next-step-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.next-step-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #2c2c2c;
}

.next-step-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Legal Content */
.legal-content {
    padding: 60px 20px;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2c2c2c;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #2c2c2c;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #ddd;
}

.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.cookie-table tbody tr:hover {
    background: #fafbfc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .visual-block-left,
    .visual-block-right {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

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

    .service-cards {
        flex-direction: column;
    }

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

    .service-detail {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
        padding-bottom: 60px;
    }

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

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

    .team-member {
        flex: 1 1 100%;
    }

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

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

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

    .page-hero h1,
    .page-hero-small h1 {
        font-size: 36px;
    }

    .section-title-center {
        font-size: 32px;
    }

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

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

    .sticky-cta-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

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

    .cta-hero,
    .cta-urgency,
    .cta-final {
        padding: 14px 32px;
        font-size: 16px;
    }

    .content-side h2 {
        font-size: 28px;
    }

    .section-title-center {
        font-size: 28px;
    }
}
