* {
    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: #333;
    background-color: #fff;
}

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

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

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

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c3e50;
}

.hero-visual {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #f5f5f5;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.hero-overlay p {
    font-size: 22px;
    font-weight: 400;
    opacity: 0.95;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.intro-text {
    font-size: 24px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 500;
}

.content-narrow p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.problem-section {
    padding: 120px 20px;
    background-color: #fff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.3;
}

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.insight-block {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.insight-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.insight-block p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.trust-build {
    padding: 120px 20px;
    background-color: #f9f9f9;
}

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

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.trust-card {
    flex: 1;
    max-width: 360px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.trust-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.trust-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 25px 25px 15px;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0 25px 25px;
}

.testimonials-flow {
    padding: 100px 20px;
    background-color: #fff;
}

.testimonial {
    margin-bottom: 60px;
    border-left: 4px solid #667eea;
    padding-left: 30px;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 16px;
    color: #888;
    font-style: normal;
    font-weight: 600;
}

.collections-reveal {
    padding: 120px 20px;
    background-color: #fafafa;
}

.collections-reveal h2 {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 70px;
}

.collection-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.collection-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.collection-item:nth-child(even) {
    flex-direction: row-reverse;
}

.collection-visual {
    flex: 1;
    background-color: #f5f5f5;
}

.collection-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.collection-info {
    flex: 1;
}

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

.collection-info p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.price-tag {
    font-size: 28px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 25px;
}

.btn-select {
    background-color: #2c3e50;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

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

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

.form-section > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.main-form {
    background-color: #f9f9f9;
    padding: 50px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    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: #667eea;
}

.btn-submit {
    background-color: #667eea;
    color: #fff;
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.final-assurance {
    padding: 100px 20px;
    background-color: #2c3e50;
    color: #fff;
}

.final-assurance h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

.final-assurance p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.site-footer {
    background-color: #1a252f;
    color: #fff;
    padding: 60px 40px 30px;
}

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

.footer-block {
    flex: 1;
}

.footer-block h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #bbb;
}

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

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

.footer-block ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #bbb;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 40px;
    z-index: 10000;
    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: 30px;
}

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

.cookie-content p a {
    color: #667eea;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #667eea;
    color: #fff;
}

.btn-accept:hover {
    background-color: #5568d3;
    transform: translateY(-1px);
}

.btn-reject {
    background-color: #f5f5f5;
    color: #333;
}

.btn-reject:hover {
    background-color: #e0e0e0;
    transform: translateY(-1px);
}

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

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.lead {
    font-size: 22px;
    opacity: 0.95;
    line-height: 1.6;
}

.about-story {
    padding: 100px 20px;
}

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

.story-block h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.story-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.values-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
}

.value-card {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.mission-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-block h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.mission-block p {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 80px 20px;
}

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

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-price {
    font-size: 26px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

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

.feature-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
}

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

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.cta-section {
    padding: 80px 20px;
    background-color: #fafafa;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background-color: #667eea;
    color: #fff;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

.contact-info {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

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

.contact-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-email {
    color: #555;
    font-weight: 600;
}

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

.contact-note p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.contact-note a {
    color: #667eea;
    font-weight: 600;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 44px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 24px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.steps-list {
    padding-left: 25px;
}

.steps-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #f5f5f5;
    color: #333;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.legal-page {
    padding: 80px 20px;
    background-color: #fafafa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px;
    border-radius: 8px;
}

.legal-content h1 {
    font-size: 40px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

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

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

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 700;
    color: #2c3e50;
}

.cookies-table td {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

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

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

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

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

    .split-layout,
    .collection-item,
    .service-detail,
    .trust-grid,
    .values-grid,
    .contact-grid {
        flex-direction: column;
    }

    .collection-item:nth-child(even) {
        flex-direction: column;
    }

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

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

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