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

.ad-disclosure {
    background-color: #fef3c7;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #92400e;
    border-bottom: 1px solid #fde68a;
}

.navbar {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #1a1a1a;
}

.hero-story {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

.hero-text-center h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

.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;
}

.story-intro {
    background-color: #fafafa;
}

.image-break {
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.image-break img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.problem-section {
    background-color: #ffffff;
}

.insight-box {
    background-color: #f0f9ff;
    border-left: 4px solid: #0284c7;
    padding: 30px;
    margin-top: 40px;
}

.insight-box p {
    font-size: 17px;
    color: #0c4a6e;
    margin: 0;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

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

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

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #333333;
}

.solution-reveal {
    background-color: #fafafa;
}

.trust-section {
    background-color: #ffffff;
}

.testimonial-flow {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    border-left: 3px solid #e5e5e5;
    padding-left: 30px;
}

.testimonial p {
    font-size: 19px;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.testimonial .author {
    font-size: 15px;
    color: #737373;
    font-style: normal;
}

.benefits-grid {
    background-color: #fafafa;
    padding: 100px 20px;
}

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

.benefits-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

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

.benefit-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.benefit-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e5e5e5;
}

.benefit-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

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

.collections-pricing {
    background-color: #ffffff;
    padding: 100px 20px;
}

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

.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.pricing-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.pricing-intro p {
    font-size: 18px;
    color: #4a4a4a;
}

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

.service-item {
    flex: 1;
    min-width: 260px;
    background-color: #fafafa;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e5e5e5;
}

.service-item h3 {
    font-size: 22px;
    margin: 25px 25px 12px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 15px;
    color: #4a4a4a;
    margin: 0 25px 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-item .price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 25px 20px;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px 24px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #333333;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-container > p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 35px;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group input[readonly] {
    background-color: #f3f4f6;
    color: #6b7280;
}

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

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

.final-cta {
    background-color: #1a1a1a;
    padding: 100px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 19px;
    color: #d1d1d1;
    margin-bottom: 35px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #f5f5f5;
}

.disclaimer-section {
    background-color: #fef3c7;
    padding: 50px 20px;
}

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

.footer {
    background-color: #1a1a1a;
    color: #d1d1d1;
    padding: 60px 20px 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 25px 20px;
    z-index: 1000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #d1d1d1;
    font-size: 14px;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

.btn-reject {
    background-color: transparent;
    color: #d1d1d1;
    border: 1px solid #d1d1d1;
}

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

.page-header {
    background-color: #1a1a1a;
    padding: 100px 20px;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.header-content p {
    font-size: 19px;
    color: #d1d1d1;
}

.about-content {
    background-color: #ffffff;
}

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

.about-text-block {
    margin-bottom: 70px;
}

.about-text-block h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-text-block p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image-full {
    margin-bottom: 70px;
    background-color: #f5f5f5;
}

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

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

.about-values h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

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

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

.value-item p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

.about-team {
    background-color: #fafafa;
    padding: 50px;
    border-radius: 8px;
    margin-top: 70px;
}

.about-team h2 {
    font-size: 30px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-team p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-cta {
    background-color: #1a1a1a;
    padding: 80px 20px;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 17px;
    color: #d1d1d1;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #f5f5f5;
}

.services-intro {
    background-color: #fafafa;
    padding: 80px 20px;
}

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

.intro-container h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-container p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

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

.service-description {
    flex: 1;
}

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

.service-description > p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-features {
    margin: 30px 0;
}

.service-features h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.service-pricing {
    margin: 25px 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    font-size: 15px;
    color: #737373;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.services-cta {
    background-color: #fafafa;
    padding: 80px 20px;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-container p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 30px;
}

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

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-main {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.contact-block {
    flex: 1;
}

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

.contact-block > p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.info-item p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

.hours-note {
    margin-top: 10px;
    font-size: 14px;
    color: #737373;
    font-style: italic;
}

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

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

.contact-faq h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

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

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

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

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

.updated-date {
    font-size: 14px;
    color: #737373;
    margin-bottom: 50px;
}

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

.legal-container h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

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

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

.legal-container a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #4a4a4a;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

.cookie-table th {
    background-color: #fafafa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 15px;
    color: #4a4a4a;
}

.thanks-section {
    background-color: #ffffff;
    padding: 120px 20px;
}

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

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

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

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

.thanks-container > p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 50px;
    line-height: 1.7;
}

.thanks-next {
    background-color: #fafafa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.thanks-next ul {
    list-style: none;
    padding: 0;
}

.thanks-next li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.thanks-next li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    border: 2px solid #1a1a1a;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-text-center h1 {
        font-size: 38px;
    }

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

    .split-layout,
    .service-detail {
        flex-direction: column;
    }

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

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

    .benefit-cards,
    .service-grid {
        flex-direction: column;
    }
}