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

.main-nav {
    background-color: #1a2332;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

.ad-notice {
    background-color: #4a5d6f;
    color: #ffffff;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-fullwidth {
    width: 100%;
    min-height: 85vh;
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(42, 61, 79, 0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 3rem;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: 1.4rem;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.95;
}

.intro-story {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.opening-line {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.intro-story p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: #3d4f62;
}

.problem-amplification {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.split-layout.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5d6f;
    line-height: 1.8;
}

.image-block {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.insight-reveal {
    background: linear-gradient(135deg, #1a2332, #2a3d4f);
    padding: 5rem 2rem;
    color: #ffffff;
}

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

.centered-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.insight-text {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.citation {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #6ba3e8;
}

.trust-building {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.content-wrapper h2 {
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a2332;
}

.process-flow {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    flex: 1;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    color: #1a2332;
}

.process-card p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #4a5d6f;
    line-height: 1.7;
}

.testimonials-inline {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.testimonial-card {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a2332;
    font-size: 0.95rem;
}

.benefits-reveal {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.benefits-text {
    flex: 1.2;
}

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a2332;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.9rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #3d4f62;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
    font-size: 1.3rem;
}

.benefits-visual {
    flex: 0.8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefits-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.science-backing {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.science-backing h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a2332;
}

.science-backing p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: #4a5d6f;
}

.service-selection {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2a3d4f, #1a2332);
}

.service-selection h2 {
    color: #ffffff;
}

.service-cards {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card.featured {
    border: 3px solid #4a90e2;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #4a90e2;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5d6f;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: #4a90e2;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
}

.select-service {
    width: 100%;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a2332;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5d6f;
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #dfe4ea;
    border-radius: 6px;
    font-size: 1rem;
    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: #4a90e2;
}

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

.submit-button {
    width: 100%;
    margin-top: 1rem;
    padding: 1.1rem;
    font-size: 1.1rem;
}

.final-cta {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.final-cta h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.15rem;
    color: #4a5d6f;
    margin-bottom: 2rem;
}

.disclaimer-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #5a6c7d;
    font-style: italic;
}

.main-footer {
    background-color: #1a2332;
    color: #e8eaed;
    padding: 3rem 2rem 1rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b8c1cc;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #b8c1cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4a90e2;
}

.reference-item {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2a3d4f;
    text-align: center;
    color: #8899a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-btn.accept {
    background: #4a90e2;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #3a7bc8;
}

.cookie-btn.reject {
    background: #6c757d;
    color: #ffffff;
}

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

.page-header {
    background: linear-gradient(135deg, #1a2332, #2a3d4f);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-intro {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5d6f;
    margin-bottom: 1.2rem;
}

.mission-visual {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.values-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #4a90e2;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a2332;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5d6f;
}

.experience-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.experience-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.experience-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5d6f;
    margin-bottom: 1.2rem;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.services-detail {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid #4a90e2;
}

.featured-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4a90e2;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 10;
}

.service-header {
    background: linear-gradient(135deg, #1a2332, #2a3d4f);
    color: #ffffff;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h2 {
    font-size: 2rem;
    font-weight: 700;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a90e2;
}

.service-body {
    padding: 2.5rem;
}

.service-overview {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5d6f;
    margin-bottom: 2rem;
}

.service-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #3d4f62;
}

.service-features li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-size: 1.2rem;
}

.service-ideal {
    font-style: italic;
    color: #5a6c7d;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.service-comparison {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.comparison-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5d6f;
    margin-bottom: 3rem;
}

.comparison-points {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-item {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.comparison-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a2332;
}

.comparison-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5d6f;
}

.guarantee-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.guarantee-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.guarantee-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5d6f;
    margin-bottom: 1.2rem;
}

.contact-info {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a2332;
}

.detail-block {
    margin-bottom: 2.5rem;
}

.detail-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a2332;
}

.detail-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5d6f;
}

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-note {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-note h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.contact-note p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5d6f;
    margin-bottom: 1.2rem;
}

.contact-note a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
}

.contact-note a:hover {
    text-decoration: underline;
}

.directions-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.directions-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.directions-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5d6f;
    margin-bottom: 1.2rem;
}

.thanks-hero {
    background: linear-gradient(135deg, #1a2332, #2a3d4f);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    opacity: 0.95;
}

.confirmation-details {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.confirmation-details h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a2332;
}

.next-steps {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4a90e2;
}

.step-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5d6f;
}

.selected-service-display {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.selected-service-display strong {
    color: #1a2332;
}

.selected-service-display span {
    color: #4a90e2;
    font-weight: 600;
}

.thanks-info {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.thanks-info h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.thanks-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5d6f;
    margin-bottom: 1.2rem;
}

.thanks-cta {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.legal-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.legal-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5d6f;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5d6f;
    margin-bottom: 0.6rem;
}

.legal-content a {
    color: #4a90e2;
    text-decoration: none;
}

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

@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtext {
        font-size: 1.2rem;
    }

    .split-layout,
    .split-layout.reverse,
    .offset-layout {
        flex-direction: column;
    }

    .process-flow,
    .testimonial-grid,
    .service-cards,
    .values-grid,
    .next-steps,
    .comparison-points,
    .contact-layout {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-header {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-links a {
        display: none;
    }

    .ad-notice {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}