* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
}

.story-intro {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.narrow-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #1a1a1a;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.visual-break {
    position: relative;
    padding: 80px 20px;
    background-color: #ffffff;
}

.visual-break img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.caption-box {
    max-width: 700px;
    margin: 30px auto 0;
    text-align: center;
}

.caption-box p {
    font-size: 16px;
    color: #6c757d;
    font-style: italic;
}

.problem-section {
    padding: 100px 20px;
    background-color: #2c3e50;
    color: #ffffff;
}

.problem-section h2 {
    color: #ffffff;
    margin-bottom: 30px;
}

.problem-section p {
    color: #ecf0f1;
}

.insight-block {
    padding: 100px 20px;
    background-color: #ffffff;
}

.split-insight {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.insight-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.insight-text {
    flex: 1;
}

.insight-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.insight-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.testimonial-inline {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.testimonial-inline blockquote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    color: #2c3e50;
    border-left: 4px solid #3498db;
    padding-left: 30px;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: #6c757d;
}

.benefits-reveal {
    padding: 100px 20px;
    background-color: #ffffff;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wide h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.benefit-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 16px;
    color: #4a4a4a;
}

.services-funnel {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    gap: 40px;
    align-items: center;
}

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

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

.service-details {
    flex: 1;
    padding: 40px;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0;
}

.btn-select {
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-select.selected {
    background-color: #27ae60;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-container p {
    font-size: 16px;
    margin-bottom: 32px;
    color: #6c757d;
}

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

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

.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background-color: #ffffff;
}

.form-group input[readonly] {
    background-color: #e9ecef;
}

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

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

.trust-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.testimonial-block {
    margin-bottom: 40px;
}

.testimonial-block blockquote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    color: #2c3e50;
    border-left: 4px solid #3498db;
    padding-left: 24px;
}

.testimonial-block cite {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    font-style: normal;
    color: #6c757d;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff9e6;
    border-top: 2px solid #ffd966;
    border-bottom: 2px solid #ffd966;
}

.disclaimer-text {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.6;
    text-align: center;
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    color: #bdc3c7;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    margin: 0;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.page-header {
    padding: 80px 20px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 20px;
    color: #6c757d;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
}

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

.thanks-icon {
    font-size: 72px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.order-summary {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.order-summary h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.order-summary p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 8px;
}

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

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.next-steps ul {
    list-style-position: inside;
    font-size: 16px;
    color: #4a4a4a;
}

.next-steps li {
    margin-bottom: 10px;
}

.btn-back {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.about-story,
.about-change {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-visual {
    padding: 0;
    background-color: #f0f0f0;
}

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

.about-team {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.team-member p {
    font-size: 15px;
    color: #4a4a4a;
}

.about-values {
    padding: 80px 20px;
    background-color: #ffffff;
}

.values-list {
    list-style-position: inside;
    font-size: 18px;
    color: #4a4a4a;
}

.values-list li {
    margin-bottom: 16px;
}

.services-page {
    padding: 60px 20px;
    background-color: #ffffff;
}

.service-detailed {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

.service-image-large {
    flex: 1;
    background-color: #f0f0f0;
}

.service-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.service-info ul {
    list-style-position: inside;
    margin-bottom: 30px;
}

.service-info li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.price-display {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0;
}

.btn-order {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.services-section-title {
    font-size: 36px;
    text-align: center;
    margin: 80px 0 40px;
    color: #1a1a1a;
}

.additional-services {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.addon-service {
    flex: 1;
    min-width: 320px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.addon-service img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.addon-service h3 {
    font-size: 22px;
    padding: 24px 24px 12px;
    color: #1a1a1a;
}

.addon-service p {
    font-size: 16px;
    padding: 0 24px 20px;
    color: #4a4a4a;
}

.addon-service .price-tag {
    padding: 0 24px;
    font-size: 28px;
}

.btn-secondary {
    display: inline-block;
    margin: 0 24px 24px;
    padding: 12px 28px;
    background-color: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.contact-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

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

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
}

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

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

.contact-note {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.legal-page {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.legal-content li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.legal-table th,
.legal-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.legal-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.legal-table td {
    color: #4a4a4a;
}

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

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

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

    .split-insight,
    .service-item,
    .service-detailed,
    .contact-layout,
    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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