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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 4px 12px;
    border-radius: 12px;
}

.hero-narrow {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 20px;
}

.hero-narrow h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.95;
}

.story-flow {
    background: #fafafa;
    padding: 100px 0;
}

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

.story-intro,
.story-problem,
.story-insight,
.story-solution {
    margin-bottom: 80px;
}

.story-container h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #2c3e50;
}

.story-container p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #34495e;
}

.problem-list,
.solution-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li,
.solution-list li {
    font-size: 1.1rem;
    padding: 15px 0 15px 35px;
    position: relative;
    color: #2c3e50;
}

.problem-list li:before,
.solution-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 1.8rem;
}

.solution-list li:before {
    color: #27ae60;
}

.image-inline {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin: 60px -50vw;
    height: 500px;
    overflow: hidden;
}

.image-inline img {
    width: 100%;
    height: 100%;
    display: block;
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.insight-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.insight-card p {
    font-size: 1.05rem;
    color: #555;
}

.trust-section {
    margin: 80px 0;
}

.trust-columns {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.trust-block {
    background: #ffffff;
    padding: 40px;
    border-left: 4px solid #3498db;
    border-radius: 8px;
}

.trust-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.testimonials-inline {
    margin: 80px 0;
    padding: 60px 0;
    background: #ffffff;
    border-radius: 15px;
}

.testimonial {
    margin-bottom: 50px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid #27ae60;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.services-reveal {
    margin-top: 100px;
}

.services-reveal h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
}

.services-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 60px;
}

.service-card-funnel {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 50px;
}

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

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.price-reveal {
    font-size: 1.6rem;
    font-weight: 700;
    color: #27ae60;
    margin: 30px 0;
}

.btn-select {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #2980b9;
}

.form-section {
    margin: 100px 0;
    padding: 60px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.form-section h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.contact-form {
    margin-top: 40px;
}

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

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

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

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

.btn-submit {
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    margin-top: 15px;
}

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

.disclaimer-section {
    margin: 80px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #e67e22;
}

.disclaimer {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.8;
}

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
    margin-top: 100px;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

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

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

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

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

.page-content {
    padding-top: 120px;
    min-height: 80vh;
}

.page-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.page-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.page-hero .hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 15px;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px 80px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.philosophy-list {
    list-style: none;
    margin: 25px 0;
}

.philosophy-list li {
    padding: 15px 0;
    font-size: 1.1rem;
}

.about-image-section {
    margin: 60px 0;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    background-color: #ecf0f1;
}

.about-image-section img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    min-width: 280px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    font-size: 1.05rem;
    color: #555;
}

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

.page-hero-simple h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.95;
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px 80px;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-detail-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

.service-detail-content {
    padding: 50px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-content ul {
    list-style: none;
    margin: 20px 0;
}

.service-detail-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
}

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

.cta-section-inline {
    text-align: center;
    padding: 60px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    margin: 80px 30px;
}

.cta-section-inline h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-section-inline p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.btn-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #2980b9;
}

.contact-header {
    text-align: center;
    padding: 80px 30px 60px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    margin-bottom: 80px;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.2rem;
}

.contact-info-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

.note-text {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 15px;
}

.contact-map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px 50px;
    border-radius: 10px;
}

.visit-info {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 30px;
}

.visit-info h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.visit-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.visit-step {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.visit-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.visit-step p {
    font-size: 1.1rem;
    color: #555;
}

.directions-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 30px;
}

.directions-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.direction-option {
    flex: 1 1 calc(33.333% - 20px);
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    min-width: 250px;
}

.direction-option h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.direction-option p {
    font-size: 1.05rem;
    color: #555;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 30px 80px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555;
}

.thanks-info {
    text-align: left;
    margin: 40px 0;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
}

.thanks-info h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-steps {
    list-style: decimal;
    margin-left: 25px;
}

.thanks-steps li {
    font-size: 1.05rem;
    padding: 10px 0;
    color: #34495e;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 30px 80px;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.last-update {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-section ul,
.legal-section ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-section a {
    color: #3498db;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 20px 25px;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

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

    .story-container h2 {
        font-size: 1.8rem;
    }

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

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

    .service-content {
        padding: 30px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

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

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

    .direction-option {
        flex: 1 1 100%;
    }

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

@media (min-width: 769px) {
    .service-card-funnel {
        flex-direction: row;
    }

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

    .service-image {
        width: 45%;
        height: auto;
    }

    .service-content {
        width: 55%;
    }

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

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

    .service-detail-image {
        width: 45%;
        height: auto;
    }

    .service-detail-content {
        width: 55%;
    }

    .contact-info-layout {
        flex-direction: row;
    }

    .contact-details {
        flex: 1;
    }

    .contact-map-placeholder {
        flex: 1;
    }

    .trust-columns {
        flex-direction: row;
    }

    .trust-block {
        flex: 1;
    }
}