/* ============================================================
   ABOUT PAGE — CLEANED STYLESHEET
   Version: 2.1 (No testimonials, improved mobile card + heading)
   ============================================================ */

/* Make sure content starts below sticky global header */
.content-hero {
    padding: 6rem 10% 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

/* ============================================================
   SUBTITLE + HEADING FIX (CENTER + GRADIENT)
   ============================================================ */

.about-title-wrapper {
    text-align: center;
    margin: 1.2rem 0 2rem; /* moved up slightly */
}

.about-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-shadow: 0 3px 10px rgba(0,0,0,0.35);
}

.about-title .gradient {
    background: linear-gradient(90deg, #2CBFAE, #4df0d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.story-testimonial-link {
    text-align: center;
    margin-top: 1rem;
}

.story-testimonial-link a {
    color: #2CBFAE;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
}

.story-testimonial-link a:hover {
    color: #4df0d8;
}

.about-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin: 10px auto 35px;
    max-width: 960px;
    color: rgba(233, 244, 243, 0.85);
    font-weight: 300;
    line-height: 1.5;
}

/* ============================================================
   SPLIT-LAYOUT MY STORY CARD (WHITE CARD)
   ============================================================ */

.story-card-split {
    display: flex;
    gap: 2rem;
    background: #ffffff;
    color: #0A2A4D;
    border-radius: 20px;
    padding: 2rem 2.2rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    max-width: 1100px;
    margin: 0 auto 3rem;
}

/* Left image */
.story-image {
    width: 43%;
    border-radius: 14px;
    overflow: hidden;
}

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

/* Right content */
.story-text {
    flex: 1;
}

/* Script heading */
.story-text .story-script-title {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    margin-top: 0.3rem;
    color: #2CBFAE;
    text-align: center;
}

/* My Story collapse control */
#storyFull.collapsed {
    display: none !important;
}

#toggleStory,
.toggle-btn {
    display: block;
    margin: 1.3rem auto 0;
    padding: 0.6rem 1.2rem;
    background: #0A2A4D;
    color: #ffffff;
    border: 1px solid rgba(44, 191, 174, 0.6);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s ease, color 0.3s ease;
}

#toggleStory:hover,
.toggle-btn:hover {
    background: rgba(44, 191, 174, 0.5);
    color: #0A2A4D;
}

/* Subtitle heading */
.story-text h3 {
    text-align: center;
    margin-bottom: 1.1rem;
    color: #0A2A4D;
    font-weight: 600;
    font-size: 1.3rem;
}

.story-text p {
    margin-bottom: 1rem;
    line-height: 1.65;
    font-weight: 300;
}

/* Center the Continue button */
.story-text .toggle-btn,
#toggleStory {
    margin-top: 1.3rem;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile — wider + centered white card */
@media (max-width: 768px) {
    .story-card-split {
        flex-direction: column;
        padding: 1.6rem 1.2rem;

        width: 95%;      /* slightly wider */
        max-width: 95%;  /* matching width */
        margin: 0 auto;  /* perfectly centered */
    }

    .story-image {
        display: none;
    }

    .story-text .story-script-title {
        font-size: 2.4rem;
    }
}

/* Signature block */
.story-signature {
    margin-top: 1.4rem;
    text-align: left;
}

.story-signature .sig-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2CBFAE;
    margin-bottom: 4px;
}

.story-signature .sig-role {
    font-size: 0.95rem;
    color: #0A2A4D;
    opacity: 0.85;
    margin-bottom: 6px;
}

/* LinkedIn (modern badge) */
.sig-linkedin-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(44, 191, 174, 0.15);
    border: 1px solid rgba(44, 191, 174, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: 0.25s ease;
    cursor: pointer;
}

.sig-linkedin-modern:hover {
    background: rgba(44, 191, 174, 0.35);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 12px rgba(44, 191, 174, 0.45);
}

.linkedin-svg {
    width: 18px;
    height: 18px;
    fill: #2CBFAE;
    transition: fill 0.25s ease;
}

.sig-linkedin-modern:hover .linkedin-svg {
    fill: #ffffff;
}

/* Mobile signature tweaks */
@media (max-width: 768px) {
    .story-signature .sig-linkedin-modern {
        width: 26px;
        height: 26px;
    }
}

/* Divider */
.story-divider,
.story-text hr {
    border: none;
    border-top: 2px solid #2CBFAE;
    width: 100%;
    margin: 1.6rem 0 1rem;
    opacity: 0.6;
}

/* ============================================================
   POLICY CONTENT CARD (T&Cs and Privacy)
   ============================================================ */

.policy-page-wrapper {
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.policy-content-card {
    background: #ffffff;
    color: #0A2A4D;
    border-radius: 20px;
    padding: 2.2rem 2.5rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    margin: 1.5rem auto 3rem;
    line-height: 1.7;
    font-weight: 300;
}

.policy-content-card h2,
.policy-content-card h3 {
    color: #0A2A4D;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.policy-content-card p {
    margin-bottom: 1rem;
}

.download-link a {
    color: #2CBFAE;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.download-link a:hover {
    color: #4df0d8;
}

@media (max-width: 768px) {
    .policy-content-card {
        padding: 1.6rem 1.2rem;
    }
}
