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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.nav-floating {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

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

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 120px 40px;
    background-color: #f8f7f5;
}

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

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

.problem-section {
    padding: 120px 40px;
    background-color: #ffffff;
}

.problem-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2c3e50;
}

.problem-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.problem-visual {
    flex: 1;
    background-color: #e8e4df;
}

.problem-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-reveal {
    padding: 120px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.insight-content h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.insight-content > p {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.8;
    color: #e2e8f0;
}

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

.insight-item {
    flex: 1;
    text-align: center;
}

.insight-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #cbd5e0;
}

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

.trust-block {
    padding: 120px 40px;
    background-color: #f8f7f5;
}

.trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-wrapper img {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e4df;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2c3e50;
}

.trust-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.testimonials-inline {
    padding: 120px 40px;
    background-color: #ffffff;
}

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

.testimonials-content h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonial-card {
    background-color: #f8f7f5;
    padding: 40px;
    margin-bottom: 32px;
    border-left: 4px solid #8b7355;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #2c3e50;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 16px;
    color: #6c757d;
    font-style: normal;
}

.offer-preview {
    padding: 120px 40px;
    background-color: #f8f7f5;
}

.offer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.offer-content h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #2c3e50;
}

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

.offer-card {
    width: calc(50% - 20px);
    background-color: #ffffff;
    overflow: hidden;
}

.offer-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #e8e4df;
}

.offer-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 24px 24px 16px;
    color: #2c3e50;
}

.offer-card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 24px 16px;
    color: #4a5568;
}

.offer-card .price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #8b7355;
    margin: 24px;
}

.benefits-flow {
    padding: 120px 40px;
    background-color: #ffffff;
}

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

.benefits-container h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #2c3e50;
}

.benefit-row {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

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

.benefit-item {
    flex: 1;
}

.benefit-item h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.benefit-row img {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e4df;
}

.form-section {
    padding: 120px 40px;
    background-color: #2c3e50;
}

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

.form-container h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.form-container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 48px;
    color: #cbd5e0;
}

.order-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    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: #8b7355;
}

.btn-primary {
    width: 100%;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: #8b7355;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #6f5c45;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #8b7355;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #6f5c45;
}

.science-section {
    padding: 120px 40px;
    background-color: #f8f7f5;
}

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

.science-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2c3e50;
}

.science-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
}

.science-content a {
    color: #8b7355;
    text-decoration: none;
    font-weight: 600;
}

.science-content a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e0;
}

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

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

.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-col .references {
    list-style: decimal;
    padding-left: 20px;
}

.footer-col .references li {
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #2d3748;
    text-align: center;
    font-size: 14px;
    color: #718096;
}

.footer-bottom p {
    margin-bottom: 12px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(10px);
    padding: 24px 40px;
    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;
    gap: 40px;
}

.cookie-content p {
    flex: 1;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #8b7355;
    color: #ffffff;
}

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

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

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

.page-header {
    padding: 180px 40px 80px;
    text-align: center;
    background-color: #f8f7f5;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 700;
    color: #2c3e50;
}

.about-story {
    padding: 120px 40px;
    background-color: #ffffff;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2c3e50;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.about-image {
    flex: 1;
    background-color: #e8e4df;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.values-section {
    padding: 120px 40px;
    background-color: #f8f7f5;
}

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

.values-container h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.value-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.team-section {
    padding: 120px 40px;
    background-color: #ffffff;
}

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

.team-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2c3e50;
}

.team-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
}

.approach-section {
    padding: 120px 40px;
    background-color: #f8f7f5;
}

.approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: #e8e4df;
}

.approach-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2c3e50;
}

.approach-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-detailed {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

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

.service-visual {
    flex: 1;
    background-color: #e8e4df;
}

.service-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.service-details p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
}

.service-details h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: #2c3e50;
}

.service-details ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-details li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #4a5568;
}

.service-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: 700;
    font-size: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #8b7355;
    margin: 32px 0 24px;
}

.contact-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #2c3e50;
}

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

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

.contact-item p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.contact-visual {
    flex: 1;
    background-color: #e8e4df;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.visit-section {
    padding: 120px 40px;
    background-color: #f8f7f5;
}

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

.visit-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2c3e50;
}

.visit-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
}

.thanks-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
    background-color: #f8f7f5;
}

.thanks-container {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 40px;
    background-color: #8b7355;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    font-weight: 700;
}

.thanks-container h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-container p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.service-confirmation {
    margin: 32px 0;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 8px;
}

.service-confirmation p {
    font-size: 18px;
    color: #2c3e50;
}

.legal-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 48px 0 24px;
    color: #2c3e50;
}

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

.legal-container h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.legal-container li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4a5568;
}

.legal-container a {
    color: #8b7355;
    text-decoration: none;
}

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

.legal-container em {
    display: block;
    margin-top: 48px;
    font-size: 15px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 0 20px;
        top: 20px;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-overlay h1 {
        font-size: 40px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .problem-wrapper,
    .trust-wrapper,
    .about-content,
    .approach-wrapper,
    .service-block,
    .contact-container,
    .benefit-row {
        flex-direction: column;
    }

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

    .offer-card {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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