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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

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

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

.btn-cookie.accept {
    background: #4caf50;
    color: white;
}

.btn-cookie.accept:hover {
    background: #45a049;
}

.btn-cookie.reject {
    background: #757575;
    color: white;
}

.btn-cookie.reject:hover {
    background: #616161;
}

.nav-floating {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a237e;
}

.ad-disclosure {
    font-size: 12px;
    color: #757575;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
    font-style: italic;
}

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

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

.nav-menu a:hover {
    color: #1a237e;
}

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

.hero-image-wrapper {
    position: relative;
    height: 600px;
    background: #e0e0e0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(63, 81, 181, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: white;
}

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

.hero-overlay p {
    font-size: 22px;
    max-width: 700px;
    opacity: 0.95;
}

.story-section {
    padding: 120px 24px;
    background: #fafafa;
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-narrow p {
    font-size: 19px;
    margin-bottom: 28px;
    color: #424242;
    line-height: 1.8;
}

.story-narrow img {
    width: 100%;
    height: auto;
    margin: 48px 0;
    border-radius: 8px;
    background: #e0e0e0;
}

.story-narrow a {
    color: #1976d2;
    text-decoration: none;
    font-weight: 600;
}

.story-narrow a:hover {
    text-decoration: underline;
}

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

.insight-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-text {
    flex: 1.2;
}

.insight-text h3 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #1a237e;
    line-height: 1.25;
}

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

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

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

.benefits-reveal {
    padding: 120px 24px;
    background: linear-gradient(to bottom, #e8eaf6 0%, #f5f5f5 100%);
}

.benefits-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.benefits-header h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a237e;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    flex: 1 1 280px;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

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

.benefit-card a {
    color: #1976d2;
    text-decoration: none;
}

.testimonials-inline {
    padding: 100px 24px;
    background: #1a237e;
    color: white;
}

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 36px 48px;
    border-radius: 8px;
    border-left: 4px solid #64b5f6;
}

.testimonial p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 16px;
    opacity: 0.85;
}

.products-section {
    padding: 120px 24px;
    background: #ffffff;
}

.products-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.products-header h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a237e;
}

.products-header p {
    font-size: 18px;
    color: #616161;
}

.products-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.product-card {
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 340px;
    max-width: 400px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: #e0e0e0;
}

.product-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #1a237e;
}

.product-card p {
    padding: 0 24px 16px;
    font-size: 16px;
    color: #616161;
    line-height: 1.6;
}

.product-price {
    padding: 0 24px 16px;
    font-size: 28px;
    font-weight: 700;
    color: #4caf50;
}

.btn-select {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
    padding: 14px;
    background: #1a237e;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #0d1952;
}

.btn-select.selected {
    background: #4caf50;
}

.cta-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, #3f51b5 0%, #1a237e 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    opacity: 0.9;
}

.form-section {
    padding: 100px 24px;
    background: #f5f5f5;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a237e;
    text-align: center;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
}

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

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

.btn-submit:hover {
    background: #0d1952;
}

.disclaimer-section {
    padding: 60px 24px;
    background: #fff3e0;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #5d4037;
    text-align: center;
    font-style: italic;
}

.footer {
    background: #263238;
    color: #eceff1;
    padding: 64px 24px 24px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: space-between;
}

.footer-col {
    flex: 1 1 220px;
}

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

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

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

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

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

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

.references-list {
    font-size: 13px;
    line-height: 1.7;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
}

.references-list a {
    color: #64b5f6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #37474f;
    text-align: center;
}

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

.page-hero {
    padding: 80px 24px;
    background: linear-gradient(135deg, #1a237e 0%, #3f51b5 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.about-content {
    padding: 100px 24px;
    background: #fafafa;
}

.about-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.about-text {
    flex: 1.3;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a237e;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.7;
    color: #424242;
}

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

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

.values-section {
    padding: 100px 24px;
    background: #ffffff;
}

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

.values-container h2 {
    font-size: 42px;
    margin-bottom: 56px;
    text-align: center;
    color: #1a237e;
}

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

.value-item {
    flex: 1 1 280px;
    padding: 32px;
    background: #f5f5f5;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #616161;
}

.process-section {
    padding: 100px 24px;
    background: linear-gradient(to bottom, #e8eaf6 0%, #f5f5f5 100%);
}

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

.process-content h2 {
    font-size: 42px;
    margin-bottom: 56px;
    text-align: center;
    color: #1a237e;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #1a237e;
    min-width: 60px;
}

.step h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a237e;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #616161;
}

.services-intro {
    padding: 60px 24px;
    background: #fafafa;
}

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

.services-intro-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #424242;
}

.services-grid-section {
    padding: 80px 24px 120px;
    background: #ffffff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-detail {
    display: flex;
    gap: 48px;
    align-items: center;
    background: #fafafa;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card-detail:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.service-info {
    flex: 1.2;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a237e;
}

.service-info p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #424242;
}

.service-info ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-info ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #616161;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 20px;
}

.cta-bottom {
    padding: 80px 24px;
    background: #e8eaf6;
    text-align: center;
}

.cta-bottom-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a237e;
}

.cta-bottom-content p {
    font-size: 18px;
    color: #616161;
}

.cta-bottom-content a {
    color: #1976d2;
    text-decoration: none;
    font-weight: 600;
}

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

.contact-section {
    padding: 100px 24px;
    background: #fafafa;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a237e;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a237e;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #424242;
}

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

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

.contact-note {
    padding: 60px 24px;
    background: #e8eaf6;
}

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

.contact-note-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #424242;
}

.thanks-section {
    padding: 120px 24px;
    background: #fafafa;
    min-height: 70vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 64px 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 80px;
    color: #4caf50;
    margin-bottom: 24px;
}

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a237e;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 32px;
    color: #616161;
}

.thanks-info {
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #424242;
    margin-bottom: 12px;
}

#selectedServiceDisplay {
    font-weight: 600;
    color: #1a237e;
}

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

.btn-primary {
    padding: 14px 32px;
    background: #1a237e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #0d1952;
}

.btn-secondary {
    padding: 14px 32px;
    background: white;
    color: #1a237e;
    text-decoration: none;
    border: 2px solid #1a237e;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background: #1a237e;
    color: white;
}

.legal-content {
    padding: 80px 24px 120px;
    background: #fafafa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a237e;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a237e;
}

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

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

.legal-container ul li,
.legal-container ol li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #424242;
}

.legal-container a {
    color: #1976d2;
    text-decoration: none;
}

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

.legal-update {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #757575;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

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

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 12px;
    }

    .insight-container,
    .about-layout,
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .service-card-detail,
    .service-card-detail:nth-child(even) {
        flex-direction: column;
    }

    .story-narrow h2,
    .insight-text h3,
    .benefits-header h2,
    .products-header h2 {
        font-size: 32px;
    }

    .form-container {
        padding: 32px 24px;
    }

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

    .thanks-container {
        padding: 48px 24px;
    }

    .thanks-container h1 {
        font-size: 32px;
    }
}