/* --- Global Styles & Color Palette --- */
:root {
    --color-green: #00a29a;
    --color-yellow: #f5dc3d;
    --color-blue: #6ac7e9;
    --color-navy: #002835;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--color-navy);
}

/* --- Background Wrappers --- */
.top-wrapper {
    background-color: white;
}

.bottom-wrapper {
    /* IMPORTANT: Replace with the actual path to your background image */
    background-image: url('images/Rookyfree_LP_back.webp');
    background-color: #f8fafc; /* Fallback color */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a nice parallax effect */
}

/* Make sections inside wrappers transparent to show the wrapper's background */
main > div > section {
    background-color: transparent !important;
}

/* --- Form Input Styles --- */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #4b5563; /* text-gray-600 */
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: ring 0.2s, border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(0, 162, 154, 0.3);
}

/* --- FAQ Accordion --- */
.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    transition: max-height 0.4s ease-in;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-item .faq-icon {
     transition: transform 0.3s ease-in-out;
}

