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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

.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: 1.5rem;
}

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

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

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

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

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

.btn-cookie.reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

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

.nav-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-style: italic;
    max-width: 200px;
    text-align: center;
}

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

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 60px;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #34495e;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-overlay p {
    font-size: 1.3rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #16a085;
    color: white;
    transform: translateY(-2px);
}

.intro-story {
    padding: 6rem 2rem;
    background: #ecf0f1;
}

.story-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #2c3e50;
}

.story-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.visual-break {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #7f8c8d;
}

.visual-break.dark {
    position: relative;
}

.overlay-quote {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem 3rem;
    backdrop-filter: blur(5px);
}

.overlay-quote p {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 300;
}

.routes-showcase {
    padding: 6rem 2rem;
}

.routes-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.routes-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.routes-intro p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.route-card {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.route-card.reverse {
    flex-direction: row-reverse;
}

.route-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.route-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #95a5a6;
    transition: transform 0.5s ease;
}

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

.route-details {
    flex: 1;
}

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

.route-details p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.route-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.select-service {
    padding: 0.9rem 2rem;
    background: #16a085;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #138d75;
    transform: translateY(-2px);
}

.trust-block {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: white;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.trust-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.trust-points {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.trust-item p {
    opacity: 0.85;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: #ecf0f1;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-inline h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

.testimonial {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-left: 4px solid #16a085;
}

.testimonial p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #34495e;
    font-style: italic;
}

.testimonial cite {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
}

.detailed-offerings {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.detailed-offerings h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

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

.offering p {
    color: #34495e;
    line-height: 1.7;
}

.additional-routes {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.additional-routes h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

.compact-routes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.compact-route {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.compact-route p {
    margin-bottom: 1.5rem;
    color: #34495e;
}

.compact-route .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #16a085;
    margin-bottom: 1rem;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

.form-group input[readonly] {
    background: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #16a085;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #138d75;
}

.references-scientific {
    padding: 4rem 2rem;
    background: #f8f9fa;
    max-width: 900px;
    margin: 0 auto;
}

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

.references-scientific p {
    margin-bottom: 1.5rem;
    color: #34495e;
}

.reference-list {
    list-style-position: inside;
    color: #34495e;
}

.reference-list li {
    margin-bottom: 0.75rem;
}

.reference-list a {
    color: #16a085;
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #fff9e6;
    border-top: 3px solid #f39c12;
    border-bottom: 3px solid #f39c12;
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    color: #34495e;
    font-size: 0.95rem;
    line-height: 1.7;
}

.site-footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-col a,
.footer-col p {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #16a085;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.7;
}

.page-hero.small {
    height: 50vh;
    margin-top: 60px;
}

.page-hero.small .hero-overlay h1 {
    font-size: 3rem;
}

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

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

.content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.content-narrow p {
    font-size: 1.15rem;
    color: #34495e;
}

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

.service-block {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #95a5a6;
}

.service-content {
    flex: 1;
}

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

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.service-features {
    list-style-position: inside;
    margin-bottom: 2rem;
    color: #34495e;
}

.service-features li {
    margin-bottom: 0.5rem;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-range {
    font-size: 1.8rem;
    font-weight: 700;
    color: #16a085;
}

.price-note {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.service-comparison {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

.service-comparison h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

.comparison-guide {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comparison-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

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

.comparison-item p {
    color: #34495e;
}

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

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

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.story-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.methodology {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.method-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.method-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.method-intro p {
    font-size: 1.15rem;
    color: #34495e;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.method-step {
    padding: 2rem;
    background: white;
    border-left: 4px solid #16a085;
}

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

.method-step p {
    font-size: 1.05rem;
    color: #34495e;
}

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

.team-approach h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
}

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

.team-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.values-section {
    padding: 5rem 2rem;
    background: #2c3e50;
    color: white;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.value-item p {
    opacity: 0.85;
}

.impact-section {
    padding: 5rem 2rem;
}

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

.impact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.impact-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.contact-header {
    text-align: center;
    padding: 8rem 2rem 3rem;
    background: #f8f9fa;
    margin-top: 60px;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.contact-main {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

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

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

.contact-detail p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 0.75rem;
}

.contact-detail .note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    background-color: #95a5a6;
}

.location-note {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #ecf0f1;
    border-radius: 8px;
}

.location-note p {
    font-size: 0.95rem;
    color: #34495e;
}

.faq-contact {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.faq-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

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

.faq-item p {
    color: #34495e;
}

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

.thanks-content {
    flex: 1.5;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #16a085;
}

.thanks-intro {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #34495e;
}

.confirmation-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.step p {
    color: #34495e;
}

.additional-info {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff9e6;
    border-left: 4px solid #f39c12;
}

.additional-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.additional-info p {
    margin-bottom: 1rem;
    color: #34495e;
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #16a085;
    color: white;
}

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    width: 100%;
    border-radius: 8px;
    background-color: #95a5a6;
}

.post-purchase-tips {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.post-purchase-tips h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tip {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.tip h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.tip p {
    color: #34495e;
}

.legal-page {
    max-width: 900px;
    margin: 8rem auto 4rem;
    padding: 0 2rem;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

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

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

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

.legal-content p {
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    color: #34495e;
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

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

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

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

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

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