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

body {
    background-color: #f5f5f5;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
}

/* Image Styles */
.lp-image {
    display: block;
    width: 100%;
    height: auto;
}

/* Text Section Styles */
.benefits-section .text-content {
    background-color: #f7f7f7;
    /* Assuming a light gray bg based on typical LPs, or white */
    padding: 30px 20px;
    text-align: center;
}

.benefits-section h2 {
    color: #444;
    font-size: 1.5rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

.benefits-section ul {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.benefits-section li {
    margin-bottom: 15px;
    padding-left: 1.5em;
    position: relative;
    font-weight: bold;
}

.benefits-section li::before {
    content: "✔️";
    /* Simple bullet, can be customized */
    position: absolute;
    left: 0;
    color: #00b900;
}

/* Button Styles */
.cta-wrapper {
    padding: 20px;
    text-align: center;
    background-color: #fff;
}

.cta-button {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    background-color: #06c755;
    /* LINE Greenish color */
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 0;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.1s;
    line-height: 1.4;
}

.cta-button:hover {
    background-color: #05a044;
}

.cta-button:active {
    transform: translateY(2px);
}

/* Button Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

.cta-button {
    animation: pulse 2s infinite ease-in-out;
}

/* Profile Section */
.profile-section {
    position: relative;
    background-color: #f9f9f9; /* Slightly darker than body for contrast */
    padding-bottom: 60px;
    padding-top: 20px;
}

.profile-text {
    padding: 40px;
    max-width: 90%;
    width: 550px; /* Optimal reading width */
    margin: -60px auto 0; /* Creates the overlap effect */
    background: white;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Softer, deeper shadow */
    text-align: left; /* Better for reading text */
}

/* Mobile responsive adjustment for overlap */
@media (max-width: 480px) {
    .profile-text {
        margin-top: -30px;
        padding: 30px 20px;
        max-width: 92%;
    }
}

.profile-name-container {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee; /* Lighter divider */
    padding-bottom: 20px;
    display: block; /* Full width for the divider */
}

.profile-furigana {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
    letter-spacing: 0.1em;
    font-feature-settings: "palt"; /* Proportional metrics for Japanese */
}

.profile-bio p {
    margin-bottom: 1.5em; /* Cleaner spacing than empty p tags */
    font-size: 0.95rem;
    line-height: 2.0; /* More breathing room */
    color: #555;
    text-align: justify;
    letter-spacing: 0.08em; /* Refined look */
}

/* Specific styling for the last paragraph usually */
.profile-bio p:last-child {
    margin-bottom: 0;
}

.profile-bio .spacer {
    display: none; /* Hide the spacer p tag, use margin instead */
}