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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 4px;
    margin: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #4a90e2;
}

.hero-section {
    padding: 0;
    margin-top: 0;
}

.hero-card {
    background: #fff;
    overflow: hidden;
}

.hero-image {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    padding: 60px 40px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 1.25rem;
    max-width: 700px;
    line-height: 1.7;
}

.intro-cards {
    padding: 80px 0;
    background: #ffffff;
}

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

.intro-card {
    flex: 1;
    min-width: 300px;
    background: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
}

.intro-card.highlight {
    background: #4a90e2;
    color: #ffffff;
}

.intro-card h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.intro-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.story-section {
    padding: 80px 0;
    background: #fafafa;
}

.story-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    flex-wrap: wrap;
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

.insight-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: #ffffff;
}

.insight-card-main {
    text-align: center;
}

.insight-card-main h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.insight-card-main > p {
    font-size: 1.25rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.insight-item {
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.insight-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #4a90e2;
}

.insight-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.testimonials-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #f8f8f8;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #666;
}

.benefits-section {
    padding: 80px 0;
    background: #fafafa;
}

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

.benefit-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.benefit-card img {
    width: 100%;
    height: 300px;
    display: block;
}

.benefit-card.featured img {
    height: 400px;
}

.benefit-content {
    padding: 30px;
}

.benefit-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.services-overview {
    padding: 80px 0;
    background: #ffffff;
}

.service-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4a90e2;
    margin: 20px 0;
}

.btn-select-service {
    background: #4a90e2;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #357abd;
}

.form-section {
    padding: 80px 0;
    background: #f0f4f8;
}

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

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.form-group input[readonly] {
    background: #f8f8f8;
    cursor: not-allowed;
}

.btn-submit {
    background: #4a90e2;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #357abd;
}

.disclaimer-section {
    padding: 60px 0;
    background: #fafafa;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff8e1;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ffa000;
}

.disclaimer-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: #aaa;
    line-height: 1.6;
}

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

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

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

.footer-col ul li a:hover {
    color: #4a90e2;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.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 {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: #4a90e2;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #357abd;
}

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

.btn-cookie.btn-secondary:hover {
    background: #ffffff;
    color: #2c2c2c;
}

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

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

.thanks-card h1 {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 25px;
}

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

.thanks-card .service-selected {
    font-weight: 600;
    color: #1a1a1a;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #357abd;
}

.page-content {
    padding: 80px 0;
    background: #ffffff;
}

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

.content-card h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.content-card h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

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

.content-card ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

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

    .nav-disclosure {
        margin: 0;
    }

    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-overlay p {
        font-size: 1.05rem;
    }

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

    .story-card {
        flex-direction: column;
        padding: 30px;
    }

    .form-card {
        padding: 30px 20px;
    }

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