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

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

a:hover {
    color: #2980b9;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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: 20px;
}

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

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

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

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

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

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

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

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

.header-funnel {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-floating {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.nav-ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

.hero-immersive {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-center {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 30px;
}

.hero-title-large {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-hero-scroll {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero-scroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: #2c3e50;
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 100px 30px;
}

.story-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #2c3e50;
}

.story-text {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #34495e;
}

.story-subheading {
    font-size: 32px;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.story-image-inline {
    margin: 50px 0;
}

.story-image-inline img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.cta-inline {
    margin: 50px 0;
    text-align: center;
}

.btn-inline-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-inline-cta:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    color: #ffffff;
}

.insights-offset {
    background-color: #ecf0f1;
    padding: 80px 30px;
}

.insights-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.insight-block {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

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

.insight-text {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.5;
}

.testimonials-stacked {
    padding: 100px 30px;
    background-color: #ffffff;
}

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

.section-heading-center {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

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

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #7f8c8d;
    text-align: right;
}

.services-reveal-section {
    background-color: #f8f9fa;
    padding: 100px 30px;
}

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

.services-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-description {
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.6;
}

.services-grid-funnel {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card-funnel {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    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-color: #2980b9;
    transform: translateY(-2px);
}

.form-section-funnel {
    padding: 100px 30px;
    background-color: #ffffff;
}

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

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

.form-subheading {
    font-size: 18px;
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.form-price-display {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #27ae60;
    margin-bottom: 40px;
}

.order-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

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

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

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

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

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

.trust-section {
    background-color: #ecf0f1;
    padding: 100px 30px;
}

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

.trust-heading {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.trust-blocks {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.trust-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-heading {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.final-cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-final-cta {
    display: inline-block;
    padding: 18px 50px;
    background-color: #ffffff;
    color: #667eea;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.footer-funnel {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

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

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

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 14px;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.footer-references {
    list-style: none;
}

.footer-references li {
    margin-bottom: 10px;
    font-size: 13px;
}

.footer-references a {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 48px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: inline-block;
}

.thanks-heading {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-subheading {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-info {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 10px;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

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

.thanks-steps li {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

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

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

.btn-thanks-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    color: #ffffff;
}

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

.btn-thanks-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

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

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.about-content {
    padding: 80px 30px;
}

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

.about-text-block {
    margin-bottom: 60px;
}

.about-heading {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-heading-center {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.about-image-block {
    margin-bottom: 60px;
}

.about-image-block img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.about-values {
    margin: 80px 0;
}

.values-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.about-team-block {
    margin-top: 60px;
}

.about-cta {
    background-color: #ecf0f1;
    padding: 80px 30px;
    text-align: center;
}

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

.about-cta-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-cta-text {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

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

.btn-about-cta:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    color: #ffffff;
}

.services-page-section {
    padding: 80px 30px;
}

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

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-image {
    flex: 1;
    min-width: 350px;
    background-color: #e0e0e0;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 350px;
}

.service-detail-content {
    flex: 1;
    min-width: 350px;
    padding: 40px;
}

.service-detail-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-description {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 25px;
}

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

.service-features li {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

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

.service-detail-price {
    font-size: 32px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 25px;
}

.btn-service-order {
    display: inline-block;
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-service-order:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    color: #ffffff;
}

.services-info-section {
    background-color: #ecf0f1;
    padding: 60px 30px;
    text-align: center;
}

.services-info-container {
    max-width: 800px;
    margin: 0 auto;
}

.services-info-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-info-text {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.contact-section {
    padding: 80px 30px;
}

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

.contact-info-block {
    margin-bottom: 60px;
}

.contact-heading {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-detail-text {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.contact-map-block {
    margin-bottom: 60px;
}

.contact-map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-text {
    font-size: 18px;
    color: #7f8c8d;
}

.contact-additional {
    margin-top: 60px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.legal-page {
    padding: 80px 30px;
}

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

.legal-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-update {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.legal-heading {
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-subheading {
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-list {
    margin: 15px 0 15px 30px;
}

.legal-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 36px;
    }

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

    .story-heading {
        font-size: 32px;
    }

    .story-text {
        font-size: 17px;
    }

    .nav-floating {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .services-grid-funnel {
        flex-direction: column;
    }

    .service-card-funnel {
        min-width: 100%;
    }

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

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

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

    .service-detail-image {
        min-width: 100%;
    }

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

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