main{
    padding-bottom: 30px;
}
/* ===== Article Content ===== */
        .article {
            max-width: 960px;
            margin: 60px auto;
            padding: 0 20px;
            line-height: 1.9;
            letter-spacing: 0.03em;
        }


        .article h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.3;
        }


        .article h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 40px 0 15px;
            color: rgb(60,60,60);
        }

        .article h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 30px 0 10px;
            color: rgb(70,70,70);
        }

        .article h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 20px 0 10px;
        }

        .article h5 {
            font-size: 1rem;
            font-weight: 500;
            margin: 15px 0 8px;
        }


        .article p {
            margin-bottom: 18px;
            font-size: 1rem;
            color: rgb(90,90,90);
        }


        .article strong {
            color: var(--primary);
            font-weight: 600;
        }


        .article ul {
            margin: 20px 0;
            padding-left: 20px;
            list-style-type:disc;
        }

        .article ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 10px;
        }


        .article ul li::marker {
            color: var(--primary);
        }


        .article img {
            width: 100%;
            margin: 25px 0 10px;
            border-radius: 12px;
        }


        .article img + p {
            font-size: 0.9rem;
            color: rgb(140,140,140);
            margin-top: -5px;
        }


        .article h2:first-child {
            margin-top: 0;
        }


        .article p:first-of-type {
            font-size: 1.05rem;
            color: rgb(70,70,70);
        }


        .article table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.05);
        }


        .article thead {
            background-color: var(--primary);
            color: #fff;
        }

        .article th {
            text-align: left;
            padding: 12px 14px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .article td {
            padding: 12px 14px;
            border-bottom: 1px solid #eee;
            vertical-align: top;
        }


        .article td:first-child,
        .article th:first-child {
            width: auto;
        }


        .article tbody tr:hover {
            background-color: rgba(255,132,0,0.05);
        }


        .article tbody tr:last-child td {
            border-bottom: none;
        }



        .backLink{
            display: block; 
            width: fit-content; 
            margin-left: auto;
            margin-right: 0;
            background-color: gray;
            color: white;
            padding: 0 10px;
            border-radius: 20px;
        }
        .backBtn{
            display: block; 
            width: fit-content; 
            margin:auto;
            background-color: gray;
            color: white;
            padding: 2px 40px;
            border-radius: 20px;
            font-size: 1.5em;
        }

        .cta-button{
            background-color: var(--primary);
            margin: 50px auto;
            display: block;
            width: 70%;
            padding: 0px 20px;
            color: white;
            font-size: 1.7em;
            border-radius: 100px;
            text-align: center;
        }




        @media screen and (max-width:600px){
            .article {
                margin: 40px auto;
            }

            .article h1 {
                font-size: 1.8rem;
            }

            .article h2 {
                font-size: 1.4rem;
            }

            .article table {
                font-size: 0.85rem;
            }

            .article td,
            .article th {
                padding: 10px;
            }            
        }