 /* MAIN CONTAINER */
        .deca-wrapper {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 40px 60px;
            position: relative;
        }

        /* TITLE */
        .deca-title {
            text-align: center;
            font-size: 48px;
            font-weight: 800;
            color: #4a8f3b;
            margin-bottom: 20px;
        }

        .deca-title span {
            color: #e63946;
        }

        /* DATE BADGE */
        .deca-date {
            display: inline-block;
            margin: 0 auto 40px;
            padding: 12px 30px;
            background: #9a9488;
            color: #000;
            border-radius: 14px;
            font-size: 22px;
            font-weight: 500;
        }

        /* CONTENT */
        .deca-content {
            max-width: 780px;
            line-height: 1.6;
            font-size: 18px;
        }

        /* HEADINGS */
        .deca-content h3 {
            font-size: 24px;
            margin-top: 30px;
            margin-bottom: 8px;
        }

        /* READ MORE */
        .read-more {
            color: #ff0000;
            font-weight: 500;
            cursor: pointer;
        }

        /* BUTTON */
        .prev-btn {
            position: absolute;
            right: 40px;
            bottom: 20px;
            background: #9a9488;
            border: none;
            padding: 14px 26px;
            font-size: 22px;
            border-radius: 14px;
            cursor: pointer;
        }

        /* MOBILE */
        @media(max-width:768px) {
            .deca-wrapper {
                padding: 20px;
            }

            .deca-title {
                font-size: 30px;
            }

            .deca-content {
                font-size: 16px;
            }

            .prev-btn {
                position: static;
                margin-top: 30px;
            }
        }