/* Reset & Base */
:root {
    /* Main Hues - Refined for "Premium Hopeful" */
    --primary-color: #0077b6;
    /* Ocean Blue - Deeper, more trustworthy */
    --primary-light: #48cae4;
    /* Sky Blue - Bright and inviting */
    --accent-color: #f6ad55;
    /* Warm Orange - Softer, less aggressive */
    --accent-deep: #ed8936;

    /* Text Colors */
    --text-main: #2d3748;
    /* Dark Gray */
    --text-muted: #718096;
    /* Medium Gray */
    --text-white: #ffffff;

    /* Backgrounds */
    --bg-color: #f7fafc;
    --card-bg: #ffffff;

    /* Typography */
    --font-heading: 'Shippori Mincho', serif;
    --font-body: 'Noto Sans JP', sans-serif;

    /* Shadows - "Floating" Feel */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
    font-size: 16px;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #1a202c;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1280px;
    /* Widened for modern screens */
    margin: 0 auto;
    padding: 20px;
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    /* Refined Gradient */
    color: white;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.4);
    border: none;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.6);
}

.section {
    padding: 100px 0;
    /* More breathing room */
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
        /* Tighten on mobile */
    }
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
    color: #2c5282;
    /* Deep Blue for headings */
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    /* FORCE WHITE TEXT */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1.0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient Overlay for depth */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(3px);
    /* Slightly stronger blur */
}

.hero-content {
    z-index: 1;
    position: relative;
    width: 100%;
    /* Ensure it takes full width of parent */
    max-width: 95%;
    /* Mobile default */
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 2.2rem;
    /* Initial mobile size boost */
    margin-bottom: 24px;
    color: var(--text-white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    /* Softer, deeper shadow */
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.05em;
    /* Added elegance */
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 48px;
    font-weight: 500;
    color: #f7fafc;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.8;
}

/* Highlight for No Wrap */
.highlight {
    color: var(--accent-color);
    /* Use variable */
    display: block;
    margin-top: 15px;
    font-size: 2.2rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

.hero-form-wrapper {
    width: 100%;
    margin-top: 30px;
}

.hero-form-label {
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-form-wrapper .cta-form {
    margin-top: 15px;
}

/* PC Responsive for Hero */
@media (min-width: 768px) {
    .container {
        width: 80%;
    }

    .hero-content {
        max-width: 1200px;
        /* Increased */
    }

    .hero-title {
        font-size: 3rem;
    }

    .highlight {
        font-size: 3.2rem;
        /* Adjusted */
        white-space: nowrap;
        /* Force one line */
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    /* ENFORCE CENTER ALIGNMENT ON PC */
    .hero {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.45);
    }

    .recipe-item {
        flex: 1 1 300px;
    }
}

/* Animations using keyframes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards ease-out;
}

.delay-1 {
    animation-delay: 0.5s;
}

.delay-2 {
    animation-delay: 1.0s;
}

.delay-3 {
    animation-delay: 1.5s;
}

.delay-4 {
    animation-delay: 2.0s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Empathy Section */
.empathy {
    background-color: white;
    /* Clean white for text focus */
}

.empathy-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

.text-emphasis {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dd6b20;
    /* Orange Emphasis */
    margin: 20px 0;
    border-bottom: 2px solid #fbd38d;
    /* Subtle marker */
    display: inline-block;
}

/* Story Section (Timeline) */
.story-section {
    background-color: #f7fafc;
    padding: 80px 0;
    overflow: hidden;
}

.story-timeline {
    position: relative;
    max-width: 1200px;
    /* Fully widened */
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
}

/* Vertical Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #cbd5e0;
    transform: translateX(-50%);
    z-index: 1;
}

.story-item {
    position: relative;
    margin-bottom: 80px;
    /* More spacing */
    width: 50%;
    z-index: 2;
}

.story-left {
    left: 0;
    padding-right: 60px;
    /* More padding from center */
    text-align: right;
}

.story-right {
    left: 50%;
    padding-left: 60px;
    /* More padding from center */
    text-align: left;
}

/* Marker (Circle) */
.story-marker {
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border: 4px solid white;
    box-shadow: 0 0 0 4px #cbd5e0;
    border-radius: 50%;
    z-index: 3;
}

.story-left .story-marker {
    right: -10px;
}

.story-right .story-marker {
    left: -10px;
}

/* Content Box */
.story-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    position: relative;
}

.story-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Arrow for box */
.story-left .story-content::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.story-right .story-content::after {
    content: '';
    position: absolute;
    top: 25px;
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent white transparent transparent;
}

.story-year {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.story-head {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.story-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Responsive Timeline (Mobile) */
@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }

    .story-item {
        width: 100%;
        margin-bottom: 40px;
    }

    .story-left,
    .story-right {
        left: 0;
        text-align: left;
        padding-left: 60px;
        padding-right: 0;
    }

    .story-left .story-marker,
    .story-right .story-marker {
        left: 10px;
        right: auto;
    }

    .story-left .story-content::after,
    .story-right .story-content::after {
        left: -10px;
        right: auto;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }
}

.text-strong {
    font-weight: bold;
    color: #2c5282;
    /* Deep Blue Strength */
    font-size: 1.2rem;
    margin-top: 20px;
    display: block;
}

/* Profile Section */
.profile {
    background-color: white;
    /* Clean white background */
    padding: 80px 0;
    /* More space */
}

.profile-container {
    display: flex;
    flex-direction: column;
    /* Mobile first */
    align-items: center;
    gap: 50px;
    /* More gap */
    max-width: 1280px;
    /* Widened to full container width */
    margin: 0 auto;
}

.profile-image-box {
    flex-shrink: 0;
}

.profile-image {
    width: 375px;
    /* 1.5x larger (was 250px) */
    height: 375px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 5px solid white; */
    /* Removed border for cleaner look */
    /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); */
    /* Removed shadow to match flat style of reference */
}

.profile-text {
    width: 100%;
}

/* Label "講師紹介" */
.profile-label {
    font-size: 1rem;
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 5px;
    display: block;
}

/* Name Wrapper */
.profile-name-wrapper {
    position: relative;
    margin-bottom: 60px;
    /* Increased margin to accommodate larger text */
}

.profile-name-main {
    font-size: 4.5rem;
    /* 1.5x larger (was 3rem) */
    font-weight: bold;
    color: var(--text-main);
    line-height: 1;
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
}

.profile-name-en {
    position: absolute;
    top: 5px;
    left: 30px;
    /* Adjusted offset */
    font-size: 6rem;
    /* 1.5x larger (was 4rem) */
    font-weight: bold;
    color: #f0f4f8;
    /* Very light gray */
    z-index: 1;
    line-height: 1;
    font-family: serif;
    /* Match the "Hayato Sakurai" style */
    white-space: nowrap;
}

/* Checklist Styles */
.profile-checklist {
    list-style: none;
    margin-top: 20px;
}

.profile-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px dashed #e2e8f0;
    /* Dotted line separator */
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
}

.profile-item:first-child {
    border-top: 1px dashed #e2e8f0;
}

.check-mark {
    color: #f6ad55;
    /* Orange/Yellow check */
    font-size: 1.1rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

/* PC Responsive for Profile */
@media (min-width: 768px) {
    .profile-container {
        flex-direction: row;
        align-items: flex-start;
        /* Aligned top */
    }

    .profile-image-box {
        margin-right: 20px;
    }

    .profile-text {
        text-align: left;
        flex: 1;
    }
}

/* Solution Section (Recipes) */
.solution {
    background-color: white;
}

/* Achievements Carousel */
.achievements-section {
    background-color: white;
    padding: 0 0 60px 0;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 0;
    /* Remove gap for seamless single-view */
    width: 100%;
    max-width: 800px;
    /* Constrain width for "One by One" focus */
    margin: 0 auto;
    /* Center the stage */
    overflow-x: auto;
    padding: 10px;
    /* Minimal padding */
    scroll-behavior: smooth;

    /* Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #edf2f7;

    /* Snap */
    scroll-snap-type: x mandatory;
}

/* Webkit Scrollbar */
.carousel-track::-webkit-scrollbar {
    height: 8px;
    /* Thinner */
}

.carousel-track::-webkit-scrollbar-track {
    background: #edf2f7;
    border-radius: 4px;
}

.carousel-track::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.carousel-img {
    height: auto;
    max-height: 500px;
    /* Limit height */
    width: 100%;
    /* Force full width of container */
    object-fit: contain;
    /* Ensure full image is visible */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    flex-shrink: 0;

    /* Snap Alignment */
    scroll-snap-align: center;
    scroll-snap-stop: always;
    /* Force stop on image */
}

.carousel-img:hover {
    transform: scale(1.02);
    /* Slight zoom on hover */
    z-index: 10;
}

/* Removed Keyframes scroll-loop since we use JS now */

.recipe-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.recipe-item {
    background: white;
    padding: 40px 30px;
    /* More vertical space */
    border-radius: 20px;
    /* Softer rounded corners */
    flex: 1 1 100%;
    max-width: 340px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy smooth transition */
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-md);

    /* Icon Background Setup */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Watermark Icon */
.recipe-item::before {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    /* Larger icon */
    height: 140px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.08;
    /* Subtler */
    z-index: 0;
    transition: all 0.4s ease;
}

/* Ensure text is above icon */
.recipe-item>* {
    position: relative;
    z-index: 1;
}

/* Specific Icons */
.recipe-item-passion::before {
    background-image: url('icon_passion.png');
}

.recipe-item-ai::before {
    background-image: url('icon_ai_robot.png');
}

.recipe-item-cycle::before {
    background-image: url('icon_cycle.png');
}

.recipe-item-steps::before {
    background-image: url('icon_steps.png');
}

.recipe-item-flag::before {
    background-image: url('icon_flag.png');
}

.recipe-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.recipe-item:hover::before {
    transform: scale(1.1) rotate(-5deg);
    /* Dynamic movement */
    opacity: 0.15;
}

.recipe-num {
    display: inline-block;
    color: var(--primary-color);
    font-family: var(--font-heading);
    /* Serif for elegance */
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--accent-color);
    /* Underline accent */
    padding-bottom: 5px;
}

.recipe-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--text-main);
}

.recipe-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Section */
/* CTA Section - Strengthened */
.cta {
    background: linear-gradient(135deg, #094b85 0%, #3182ce 100%);
    /* Deep Trusted Blue Profile */
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.cta-box {
    max-width: 900px;
    /* Widened CTA */
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-pre-label {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    font-weight: bold;
    padding: 5px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-title {
    color: white;
    /* Warning: Overriding default heading color */
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #edf2f7;
}

.cta-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    /* Increased from 400px */
    margin-left: auto;
    margin-right: auto;
}

.input-email {
    padding: 15px;
    border-radius: 50px;
    border: 2px solid #cbd5e0;
    background: white;
    color: #2d3748;
    font-size: 1rem;
    text-align: center;
}

.input-email:focus {
    outline: none;
    border-color: #63b3ed;
}

.btn-cta {
    width: 100%;
    white-space: nowrap;
    background: linear-gradient(to right, #f6ad55, #ed8936);
    /* Orange Action Button */
    font-size: 1.3rem;
    /* Larger font */
    padding: 20px 30px;
    box-shadow: 0 5px 15px rgba(237, 137, 54, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(237, 137, 54, 0.6);
    background: linear-gradient(to right, #ed8936, #dd6b20);
}

.btn-arrow {
    font-size: 0.9em;
    transition: transform 0.3s;
}

.btn-cta:hover .btn-arrow {
    transform: translateX(5px);
}

.cta-recommend {
    color: #ffeb3b;
    /* Bright Yellow for visibility */
    font-weight: bold;
    margin-top: 15px;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.1);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
}

.cta-micro-copy {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #cbd5e0;
}

/* Footer */
.footer {
    padding: 40px 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #a0aec0;
    background-color: white;
    border-top: 1px solid #edf2f7;
}

.footer-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #718096;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3182ce;
    text-decoration: underline;
}

.copyright {
    display: block;
    margin-bottom: 5px;
    color: #cbd5e0;
}

/* Agitation Section */
.agitation {
    background-color: #ebf8ff;
    /* Very clear blue hint */
    position: relative;
    overflow: hidden;
}

.agitation-content {
    max-width: 1000px;
    /* Widened */
    margin: 0 auto;
    background: white;
    padding: 60px;
    /* Increased padding */
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.agitation-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: bold;
}

.pain-list {
    text-align: left;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05rem;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e2e8f0;
}

.pain-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Target Checklist Section */
.target-section {
    background-color: white;
}

.checklist-box {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--primary-light);
    max-width: 1000px;
    /* Widened */
    margin: 0 auto;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 25px;
    margin-bottom: 15px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-weight: bold;
    color: var(--text-main);
}

.check-icon {
    color: #48bb78;
    /* Green for Check */
    font-size: 1.2rem;
}

/* Content Details Section */
.content-section {
    background-color: #f7fafc;
}

.content-box {
    background: white;
    padding: 60px;
    /* Increased padding */
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    max-width: 1000px;
    /* Widened */
    margin: 0 auto;
    border-left: 5px solid var(--primary-color);
}

.chapter-list {
    list-style: none;
    margin-top: 20px;
}

.chapter-item {
    margin-bottom: 25px;
}

.chapter-label {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 8px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.chapter-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-main);
    display: block;
    margin-bottom: 5px;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 5px;
}

.chapter-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding-left: 5px;
}

/* FAQ Section */
.faq-section {
    background-color: white;
}

.faq-list {
    max-width: 1000px;
    /* Widened */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 25px;
}

.faq-q {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 1.1rem;
}

.faq-q::before {
    content: "Q.";
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-a {
    padding-left: 40px;
    color: var(--text-main);
    line-height: 1.6;
}

/* Closing Section */
.closing-section {
    background-color: var(--text-main);
    /* Dark background */
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.closing-title {
    color: white;
    margin-bottom: 30px;
}

.closing-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 2;
    color: #cbd5e0;
}

/* Footer Adjustments */
.footer {
    border-top: none;
    background-color: #1a202c;
    /* Match closing darker */
    color: #718096;
}

.copyright {
    color: #4a5568;
}

/* Target Message Box Strong Style */
.target-message-box {
    margin-top: 50px;
    background: linear-gradient(135deg, #fffcf5 0%, #fff 100%);
    border: 2px solid #f6ad55;
    /* Orange border */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(221, 107, 32, 0.1);
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.target-message-text {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2d3748;
    margin: 0;
    line-height: 1.5;
}

.text-highlight {
    background: linear-gradient(transparent 60%, #fefcbf 60%);
    padding: 0 4px;
}

/* Mobile fix for CTA button overflow */
@media (max-width: 768px) {
    .btn-cta {
        font-size: 1rem;
        /* Reduce font size */
        padding: 15px 10px;
        /* Reduce padding */
        white-space: normal;
        /* Allow text to wrap if necessary */
        line-height: 1.4;
        /* Improve readability if wrapped */
    }
}