/* =========================================
   RESET & FONTS
========================================= */
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

@font-face {
    font-family: "Love Diary Regular";
    src: local("Love Diary-Regular");
}

@font-face {
    font-family: "Love Diary";   /* You can name this whatever you want! */
    src: url("Love\ Diary.otf") format("truetype"); /* Make sure the filename matches exactly */
    font-weight: normal;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #fcf8f9; /* Very soft pink background */
  font-family: "Love Diary";
    overflow-x: hidden;
}

/* =========================================
   MAIN CONTAINER
========================================= */
.faq-page {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    background-color: #fcf8f9;
    min-height: 100vh;
    padding-bottom: 40px;
    position: relative;
}

/* =========================================
   HERO HEADER (Your exact style)
========================================= */
.faq-hero {
    position: relative;
    height: 280px;
    background-image: url(pic1.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 20px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.back-btn {
    position: absolute;
    top: 25px;
    left: 20px;
    font-size: 17px;
    color: #ffd2e7;
    -webkit-text-stroke: 0.5px #000000;
    text-decoration: none;
    transition: transform 0.3s ease;
    z-index: 10;
}
.back-btn:hover { transform: scale(1.1); }

.hero-text { text-align: center; z-index: 2; }
.hero-text h1 {
    font-size: 34px;
    color: #ffd2e7;
    -webkit-text-stroke: 0.71px #000000;
    margin-bottom: 10px;
}
.hero-text p {
    font-size: 10px;
    color: #ffffff;
    -webkit-text-stroke: 0.4px #000000;
    width: 80%;
    margin: 0 auto;
}
.hero-text {
    text-align: center;
    z-index: 2;
    margin-bottom: 40px;
}
/* =========================================
   FAQ GRID (New visual style)
========================================= */
.faq-grid {
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-row {
    display: grid;
    grid-template-columns: 35px 1fr 1.2fr;
    gap: 12px;
    align-items: center;
    background-color: #ffffff;
    border: 1.43px solid #000000;
    border-radius: 29px;
    padding: 15px 18px;
    transition: all 0.3s ease;
}

.faq-row:hover {
    border-color: #ffd2e7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 210, 231, 0.15);
}

.faq-icon {
    font-size: 20px;
    text-align: center;
}

.faq-q {
    font-size: 12px;
    color: #000000;
    line-height: 1.3;
}

.faq-a {
    font-size: 9px;
    color: #555555;
    line-height: 1.5;
    background-color: #fff5f8;
    border: 1px solid #ffd2e7;
    border-radius: 20px;
    padding: 8px 12px;
    text-align: center;
}

/* =========================================
   STILL NEED HELP? CTA
========================================= */
.faq-cta {
    padding: 10px 15px 30px;
}

.cta-box {
    background-color: #ffffff;
    border-radius: 39.29px;
    border: 1.43px solid #000000;
    padding: 15px 10px;
    text-align: center;
}

.cta-box h2 {
    font-size: 22px;
    color: #ffd2e7;
    -webkit-text-stroke: 0.5px #000000;
    margin-bottom: 10px;
}

.cta-box p {
    font-size: 11px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 28px;
}
.cta-icons span {
    transition: transform 0.3s ease;
    cursor: pointer;
}
.cta-icons span:hover {
    transform: scale(1.2) rotate(5deg);
}

/* =========================================
   EXACT ORIGINAL FOOTER
========================================= */
.footer-wrapper {
    text-align: center;
    padding: 40px 15px 30px;
}

.footer-title {
    font-size: 30px;
    color: #ffd2e7;
    -webkit-text-stroke: 0.71px #000000;
    margin-bottom: 20px;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-icons img {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.footer-icons img:hover { transform: scale(1.2) rotate(5deg); }

.footer-text {
    font-size: 9.3px;
    color: #ffffff;
    -webkit-text-stroke: 0.71px #000000;
    line-height: 1.8;
    max-width: 242px;
    margin: 0 auto;
}

/* =========================================
   SCROLL ANIMATIONS
========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}