* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f3f1;
    font-family: "Cormorant Garamond", serif;
}

main{
    padding-top:150px;
}
/* =========================
   HERO SECTION
========================= */
.practice-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.practice-hero__inner {
    position: relative;
    z-index: 2;
}

.practice-hero__content {
    max-width: 850px;
}


/* =========================
   back to home icon
========================= */
.practice-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #00A499;
    text-decoration: none;
    font-family: monospace;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: color .3s ease;
    margin-bottom: 40px;
}

.practice-hero__back:hover {
    color: #333333;
}

.practice-hero__back:hover .icon--arrow-left {
    transform: translateX(-3px);
}

.practice-hero__back .icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    transition: all .3s ease;
}

.practice-hero__back span {
    transition: all .3s ease;
}

.practice-hero__back:hover .icon {
    transform: translateX(-3px);
}

/* =========================
   TITLE
========================= */
.practice-hero__title {
    max-width: 56rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: #231f20;
}

em {
    font-style: normal;
    color: #00a499;
}



/* =========================
   BUTTONS
========================= */
.practice-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 60px;
}

.practice-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.35s ease;
}

.practice-hero__button--primary {
    background: #00a499;
    color: #111;
}

.practice-hero__button--primary:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.practice-hero__button--secondary {
    border: 1px solid #111;
    color: #111;
}

.practice-hero__button--secondary:hover {
    background: #111;
    color: #fff;
}



/* =========================================
   FAQ SECTION
========================================= */

.faq-section{
    padding:100px 0;
}


.faq-wrapper{
    max-width:1000px;
    margin:0 auto;
}

/* =========================================
   FAQ ITEM
========================================= */

.faq-item{
    background:#fff;
    border:1px solid #E2E8F0;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(15,23,42,.05);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.faq-item:hover{
    box-shadow:0 10px 30px rgba(15,23,42,.08);
}

.faq-item.active{
    box-shadow:0 15px 40px rgba(15,23,42,.10);
}

/* =========================================
   QUESTION
========================================= */

.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:28px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    cursor:pointer;
    text-align:left;
    color:#0F172A;
    font-size:22px;
    line-height:1.5;
    font-weight:600;
}

/* =========================================
   PLUS / MINUS ICON
========================================= */

.faq-icon{
    position:relative;
    width:24px;
    height:24px;
    flex-shrink:0;
}

.faq-icon::before,
.faq-icon::after{
    content:'';
    position:absolute;
    background:#00A499;
    transition:all .3s ease;
}

.faq-icon::before{
    width:20px;
    height:2px;
    top:11px;
    left:2px;
}

.faq-icon::after{
    width:2px;
    height:20px;
    top:2px;
    left:11px;
}

.faq-item.active .faq-icon::after{
    transform:scaleY(0);
}

/* =========================================
   ANSWER
========================================= */

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
}

.faq-answer-inner{
    padding:0 30px 30px;
}

.faq-answer p{
    margin:0;
    color:#475569;
    font-size:17px;
    line-height:1.9;
}
ul {
    margin:0;
    color:#475569;
    font-size:17px;
    line-height:1.9;
}

/* =========================
   TABLET (991px)
========================= */
@media (max-width: 991px) {
    main{
        padding-top:100px;
    }
    .practice-hero__title {
        font-size: 3.2rem;
    }

    .faq-section {
        padding: 80px 0;
    }

    .faq-question {
        padding: 24px;
        font-size: 20px;
    }

    .faq-answer-inner {
        padding: 0 24px 24px;
    }
}

/* =========================
   MOBILE (768px)
========================= */
@media (max-width: 768px) {

    .practice-hero__back {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .practice-hero__title {
        font-size: 2.5rem;
        line-height: 1;
    }

    .practice-hero__actions {
        flex-direction: column;
        gap: 12px;
        padding-top: 40px;
    }

    .practice-hero__button {
        width: 100%;
        text-align: center;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-wrapper {
        max-width: 100%;
    }

    .faq-question {
        padding: 20px;
        font-size: 18px;
        line-height: 1.4;
        gap: 15px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .faq-answer-inner {
        padding: 0 20px 20px;
    }

    .faq-answer p,
    .faq-answer ul {
        font-size: 16px;
        line-height: 1.8;
    }
}

/* =========================
   SMALL MOBILE (480px)
========================= */
@media (max-width: 480px) {
    .practice-hero__title {
        font-size: 2rem;
    }

    .practice-hero__back {
        font-size: 13px;
        gap: 6px;
    }

    .practice-hero__button {
        padding: 14px 20px;
        font-size: 15px;
    }

    .faq-item {
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .faq-question {
        padding: 16px;
        font-size: 16px;
    }

    .faq-answer-inner {
        padding: 0 16px 16px;
    }

    .faq-answer p,
    .faq-answer ul {
        font-size: 15px;
        line-height: 1.7;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
    }

    .faq-icon::before {
        width: 16px;
        left: 1px;
    }

    .faq-icon::after {
        height: 16px;
        top: 1px;
    }
}