/* =====================================================
   PLAYGROUND GUIDE SECTION
   Primary Brand Color: #FF7350
===================================================== */

:root {
    --pg-primary: #ff7350;
    --pg-primary-dark: #e85f3d;
    --pg-primary-darker: #c94d2d;
    --pg-primary-light: #fff1ed;
    --pg-primary-soft: #fff8f6;
    --pg-primary-border: #ffd6cc;

    --pg-dark: #272727;
    --pg-heading: #2d2927;
    --pg-text: #66615e;
    --pg-white: #ffffff;
    --pg-light-bg: #fffaf8;
    --pg-border: #f1e5e1;

    --pg-warning: #e0a52e;
    --pg-warning-bg: #fff8e7;
    --pg-danger: #d65c4a;
    --pg-danger-bg: #fff7f5;
    
       --faq-primary:#ff7350;
    --faq-primary-dark:#e85f3d;
    --faq-primary-light:#fff6f3;
    --faq-border:#f1ddd7;
    --faq-text:#282321;
    --faq-muted:#68605d;
    
}

.playground-guide {
    padding: 60px 0;
    background: var(--pg-light-bg);
    color: var(--pg-dark);
}

.playground-guide * {
    box-sizing: border-box;
}

.playground-guide h2,
.playground-guide h3,
.playground-guide p {
    margin-top: 0;
}

.playground-guide h2,
.playground-guide h3 {
    color: var(--pg-heading);
}

.playground-guide p {
    color: var(--pg-text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.playground-guide .mb-0 {
    margin-bottom: 0 !important;
}

/* =====================================================
   QUICK ANSWER HIGHLIGHT
===================================================== */

.guide-highlight {
    position: relative;
    padding: 38px;
    margin-bottom: 30px;
    background: var(--pg-white);
    border: 1px solid var(--pg-primary-border);
    border-left: 5px solid var(--pg-primary);
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(255, 115, 80, 0.08);
}

.guide-highlight .guide-label {
    display: inline-block;
    padding: 7px 14px;
    margin-bottom: 15px;
    background: var(--pg-primary-light);
    color: var(--pg-primary-dark);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.guide-highlight h2 {
    color: var(--pg-heading);
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 18px;
}

/* =====================================================
   MAIN GUIDE SECTION
===================================================== */

.guide-section {
    padding: 38px;
    margin-top: 28px;
    background: var(--pg-white);
    border: 1px solid var(--pg-border);
    border-radius: 14px;
    box-shadow: 0 10px 32px rgba(75, 42, 32, 0.05);
}

.guide-title {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 22px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--pg-border);
}

.guide-title > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    background: var(--pg-primary);
    color: var(--pg-white);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 7px 18px rgba(255, 115, 80, 0.23);
}

.guide-title h2 {
    color: var(--pg-heading);
    font-size: 28px;
    line-height: 1.35;
    margin-bottom: 5px;
}

.guide-title p {
    margin-bottom: 0;
}

/* =====================================================
   CHECK GRID
===================================================== */

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0;
}

.check-item {
    position: relative;
    padding: 13px 15px 13px 43px;
    background: var(--pg-primary-soft);
    border: 1px solid var(--pg-primary-border);
    border-radius: 8px;
    color: #4d4643;
    font-size: 15px;
    line-height: 1.5;
}

.check-item::before {
    content: "✓";
    position: absolute;
    top: 13px;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    background: var(--pg-primary);
    color: var(--pg-white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}

/* =====================================================
   CONTENT GRID AND CARDS
===================================================== */

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.content-grid.three-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card {
    position: relative;
    padding: 26px;
    background: var(--pg-primary-soft);
    border: 1px solid var(--pg-border);
    border-radius: 12px;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.content-card:hover {
    transform: translateY(-4px);
    border-color: var(--pg-primary-border);
    box-shadow: 0 15px 35px rgba(255, 115, 80, 0.12);
}

.content-card.full-width {
    grid-column: 1 / -1;
}

.content-card h3 {
    color: var(--pg-heading);
    font-size: 21px;
    line-height: 1.4;
    margin-bottom: 13px;
}

.card-number {
    display: inline-block;
    color: var(--pg-primary);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
}

/* =====================================================
   LISTS
===================================================== */

.guide-list {
    padding: 0;
    margin: 15px 0;
    list-style: none;
}

.guide-list li {
    position: relative;
    padding: 5px 0 5px 22px;
    color: var(--pg-text);
    font-size: 15px;
    line-height: 1.65;
}

.guide-list li::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 2px;
    width: 7px;
    height: 7px;
    background: var(--pg-primary);
    border-radius: 50%;
}

/* =====================================================
   EXPERT NOTE
===================================================== */

.expert-note {
    padding: 18px;
    margin-top: 20px;
    background: var(--pg-primary-light);
    border-left: 4px solid var(--pg-primary);
    border-radius: 9px;
}

.expert-note strong {
    display: block;
    margin-bottom: 5px;
    color: var(--pg-primary-dark);
}

.expert-note p {
    margin-bottom: 0;
    font-size: 14px;
}

/* =====================================================
   TAGS
===================================================== */

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0 20px;
}

.tag-list span {
    display: inline-block;
    padding: 8px 13px;
    background: var(--pg-primary-light);
    color: var(--pg-primary-dark);
    border: 1px solid var(--pg-primary-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.tag-list.large-tags span {
    padding: 11px 17px;
    font-size: 14px;
}

/* =====================================================
   AGE GROUP CARDS
===================================================== */

.age-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.age-card {
    padding: 25px;
    background: var(--pg-primary-soft);
    border: 1px solid var(--pg-border);
    border-radius: 12px;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.age-card:hover {
    transform: translateY(-4px);
    border-color: var(--pg-primary-border);
    box-shadow: 0 15px 35px rgba(255, 115, 80, 0.12);
}

.age-card .age-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    margin-bottom: 15px;
    background: var(--pg-primary);
    color: var(--pg-white);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.age-card h3 {
    color: var(--pg-heading);
    font-size: 20px;
    margin-bottom: 12px;
}

/* =====================================================
   PROCESS LIST
===================================================== */

.process-list {
    position: relative;
}

.process-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    position: relative;
    padding-bottom: 25px;
}

.process-item:last-child {
    padding-bottom: 0;
}

.process-item > span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--pg-primary-light);
    border: 2px solid var(--pg-primary);
    color: var(--pg-primary-dark);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.process-item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 45px;
    left: 22px;
    width: 2px;
    height: calc(100% - 25px);
    background: var(--pg-primary-border);
}

.process-item h3 {
    color: var(--pg-heading);
    font-size: 20px;
    margin-bottom: 5px;
}

/* =====================================================
   TABLE
===================================================== */

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.guide-table {
    width: 100%;
    min-width: 750px;
    border-collapse: collapse;
}

.guide-table th,
.guide-table td {
    padding: 16px 18px;
    border: 1px solid var(--pg-border);
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
}

.guide-table th {
    background: var(--pg-primary);
    color: var(--pg-white);
    font-weight: 700;
}

.guide-table tbody tr:nth-child(even) {
    background: var(--pg-primary-soft);
}

.guide-table tbody tr:hover {
    background: var(--pg-primary-light);
}

.guide-table td:first-child {
    color: var(--pg-heading);
    font-weight: 600;
}

.table-note {
    padding: 15px 18px;
    margin-top: 15px;
    margin-bottom: 0 !important;
    background: var(--pg-warning-bg);
    border-left: 4px solid var(--pg-warning);
    border-radius: 6px;
}

/* =====================================================
   SUBSECTION BOX
===================================================== */

.subsection-box {
    padding: 27px;
    margin-top: 25px;
    background: var(--pg-primary-soft);
    border: 1px solid var(--pg-primary-border);
    border-radius: 12px;
}

.subsection-box h3 {
    color: var(--pg-heading);
    font-size: 22px;
}

/* =====================================================
   QUESTION GRID
===================================================== */

.question-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.question-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 15px;
    background: var(--pg-primary-soft);
    border: 1px solid var(--pg-border);
    border-radius: 9px;
    transition: transform 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.question-item:hover {
    transform: translateY(-3px);
    border-color: var(--pg-primary-border);
    box-shadow: 0 10px 25px rgba(255, 115, 80, 0.1);
}

.question-item span {
    flex: 0 0 32px;
    color: var(--pg-primary);
    font-size: 13px;
    font-weight: 800;
}

.question-item p {
    margin-bottom: 0;
    color: #504a47;
    font-size: 15px;
    line-height: 1.6;
}

/* =====================================================
   COMMON BUYING MISTAKES
===================================================== */

.mistake-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mistake-card {
    position: relative;
    padding: 23px 23px 23px 59px;
    background: var(--pg-danger-bg);
    border: 1px solid #f5d8d2;
    border-radius: 10px;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.mistake-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(214, 92, 74, 0.1);
}

.mistake-card::before {
    content: "×";
    position: absolute;
    top: 22px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    background: var(--pg-danger);
    color: var(--pg-white);
    border-radius: 50%;
    font-size: 19px;
    line-height: 1;
}

.mistake-card h3 {
    color: #5e342d;
    font-size: 19px;
    margin-bottom: 7px;
}

.mistake-card p {
    margin-bottom: 0;
    font-size: 14px;
}

/* =====================================================
   MAINTENANCE
===================================================== */

.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.maintenance-card {
    padding: 25px;
    background: var(--pg-primary-soft);
    border: 1px solid var(--pg-border);
    border-radius: 12px;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.maintenance-card:hover {
    transform: translateY(-4px);
    border-color: var(--pg-primary-border);
    box-shadow: 0 15px 35px rgba(255, 115, 80, 0.12);
}

.maintenance-card > span {
    display: inline-block;
    padding: 5px 10px;
    margin-bottom: 12px;
    background: var(--pg-primary);
    color: var(--pg-white);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.maintenance-card h3 {
    color: var(--pg-heading);
    font-size: 20px;
}

/* =====================================================
   STATS
===================================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 25px 0;
}

.stat-card {
    padding: 25px 20px;
    background: var(--pg-primary-light);
    border: 1px solid var(--pg-primary-border);
    border-radius: 11px;
    text-align: center;
}

.stat-card strong {
    display: block;
    color: var(--pg-primary);
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 7px;
}

.stat-card span {
    color: #514a47;
    font-size: 14px;
}

/* =====================================================
   PLANNING APPROACH
===================================================== */

.approach-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.approach-list > div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 16px;
    background: var(--pg-primary-soft);
    border: 1px solid var(--pg-border);
    border-radius: 8px;
    color: #514b48;
    font-size: 15px;
}

.approach-list span {
    color: var(--pg-primary);
    font-weight: 800;
}

/* =====================================================
   WARNING NOTE
===================================================== */

.warning-note {
    padding: 17px 20px;
    margin-top: 22px;
    background: var(--pg-warning-bg);
    border-left: 4px solid var(--pg-warning);
    border-radius: 7px;
    color: #66501b;
    font-weight: 600;
}

/* =====================================================
   FINAL SECTION
===================================================== */

.guide-final {
    padding: 45px;
    margin-top: 30px;
    background: linear-gradient(
        135deg,
        var(--pg-primary) 0%,
        var(--pg-primary-dark) 100%
    );
    border-radius: 15px;
    color: var(--pg-white);
    box-shadow: 0 18px 45px rgba(255, 115, 80, 0.24);
}

.guide-final > span {
    display: inline-block;
    margin-bottom: 12px;
    color: #ffe1d8;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guide-final h2 {
    color: var(--pg-white);
    font-size: 32px;
    margin-bottom: 18px;
}

.guide-final p {
    color: rgba(255, 255, 255, 0.86);
}

.guide-final .check-item {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--pg-white);
}

.guide-final .check-item::before {
    background: var(--pg-white);
    color: var(--pg-primary);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1199px) {
    .content-grid.three-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .age-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .playground-guide {
        padding: 60px 0;
    }

    .guide-section,
    .guide-highlight,
    .guide-final {
        padding: 30px;
    }

    .maintenance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .playground-guide {
        padding: 45px 0;
    }

    .guide-section,
    .guide-highlight,
    .guide-final {
        padding: 23px 18px;
        border-radius: 10px;
    }

    .guide-highlight h2,
    .guide-final h2 {
        font-size: 25px;
    }

    .guide-title {
        gap: 12px;
    }

    .guide-title > span {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .guide-title h2 {
        font-size: 23px;
    }

    .check-grid,
    .content-grid,
    .content-grid.three-column,
    .age-grid,
    .question-grid,
    .mistake-grid,
    .stats-grid,
    .approach-list {
        grid-template-columns: 1fr;
    }

    .content-card.full-width {
        grid-column: auto;
    }

    .process-item {
        grid-template-columns: 48px 1fr;
        gap: 12px;
    }

    .process-item > span {
        width: 40px;
        height: 40px;
    }

    .process-item:not(:last-child)::before {
        top: 39px;
        left: 19px;
    }

    .guide-table th,
    .guide-table td {
        padding: 13px;
    }

    .tag-list span {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .playground-guide p {
        font-size: 15px;
    }

    .guide-highlight h2,
    .guide-final h2 {
        font-size: 23px;
    }

    .guide-title h2 {
        font-size: 21px;
    }

    .content-card,
    .age-card,
    .maintenance-card,
    .subsection-box {
        padding: 20px;
    }

    .check-item {
        font-size: 14px;
    }

    .guide-final {
        padding: 28px 20px;
    }
}



.faq-section{
    padding:50px 0;
    background:#fffaf8;
}

.faq-section .container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 15px;
}

.faq-accordion{
    width:100%;
}

.faq-desktop-columns{
    display:flex;
    align-items:flex-start;
    gap:20px;
}

.faq-column{
    display:flex;
    flex:1 1 0;
    flex-direction:column;
    gap:20px;
    min-width:0;
}

.faq-mobile-list,
.faq-source{
    display:none;
}

.faq-accordion .accordion-item{
    width:100%;
    height:auto !important;
    min-height:0 !important;
    margin:0 !important; 
    background:#fff;
    border:1px solid var(--faq-border);
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(255,115,80,.07);
    transition:border-color .3s ease, box-shadow .3s ease;
}

.faq-accordion .accordion-item:hover{
    border-color:#ffb8a6;
    box-shadow:0 14px 35px rgba(255,115,80,.12);
}

.faq-accordion .accordion-item:has(.accordion-collapse.show){
    border-color:#ffc6b8;
    box-shadow:0 12px 32px rgba(255,115,80,.10);
}

.faq-accordion .accordion-header{
    margin:0;
}

.faq-accordion .accordion-button{
    position:relative;
    display:flex;
    align-items:center;
    gap:14px;
    width:100%;
    min-height:72px;
    padding:12px 50px 12px 12px !important;
    margin:0;
    background:#fff;
    color:var(--faq-text);
    border:0;
    border-radius:0;
    box-shadow:none !important;
    font-size:16px !important;
    font-weight:600;
    line-height:1.5;
    text-align:left;
}

.faq-accordion .accordion-button:not(.collapsed){
    background:#fff !important;
    color:var(--faq-primary-dark) !important;
}

.faq-accordion .accordion-button:focus{
    outline:0;
    border:0;
    box-shadow:none !important;
}

.faq-accordion .faq-number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 36px;
    width:36px;
    height:36px;
    background:#fff1ed;
    color:var(--faq-primary);
    border:1px solid #ffd4ca;
    border-radius:9px;
    font-size:14px;
    font-weight:700;
    line-height:1;
    transition:background-color .3s ease,color .3s ease,border-color .3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-number{
    background:var(--faq-primary);
    color:#fff;
    border-color:var(--faq-primary);
}

.faq-accordion .accordion-button::after{
    position:absolute;
    top:50%;
    right:18px;
    width:16px;
    height:16px;
    margin:0;
    background-size:16px;
    transform:translateY(-50%);
    transition:transform .3s ease;
    background-color: var(--accent-color) !important;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    transform:translateY(-50%) rotate(-180deg);
}

.faq-accordion .accordion-collapse{
    width:100%;
}

.faq-accordion .accordion-body{
      padding: 10px 16px !important;
    background:#fff !important; 
        border-top: 1px solid #0000001a !important;
}

.faq-accordion .accordion-body p{
    margin:0;
    color:var(--faq-muted) !important;
    font-size:15px;
    line-height:1.8;
}

@media (max-width:991px){
    .faq-section{
        padding:60px 0;
    }

    .faq-desktop-columns{
        display:none;
    }

    .faq-mobile-list{
        display:flex;
        flex-direction:column;
        gap:15px;
    }

    .faq-accordion .accordion-button{
        min-height:auto;
    }
}

@media (max-width:575px){
    .faq-section{
        padding:45px 0;
    }

    .faq-mobile-list{
        gap:12px;
    }

    .faq-accordion .accordion-item{
        border-radius:10px;
    }

    .faq-accordion .accordion-button{
        align-items:flex-start;
        gap:10px;
        padding:14px 43px 14px 13px !important;
        font-size:15px;
        line-height:1.5;
    }

    .faq-accordion .faq-number{
        flex:0 0 34px;
        width:34px;
        height:34px;
        border-radius:7px;
        font-size:12px;
    }

    .faq-accordion .accordion-button::after{
        top:24px;
        right:14px;
        width:14px;
        height:14px;
        background-size:14px;
        transform:none;
    }

    .faq-accordion .accordion-button:not(.collapsed)::after{
        transform:rotate(-180deg);
    }

    .faq-accordion .accordion-body{
        padding:0 15px 17px 57px;
    }

    .faq-accordion .accordion-body p{
        font-size:14px;
        line-height:1.7;
    }
}
