.answer-guide-container {
    margin: 0 auto;
    width: 1401px;
    padding: 0;
    gap: 20px;

    h2,
    h3,
    h5,
    p,
    ul {
        margin-top: 0;
    }

    p {
        color: #676767;
    }

    /* HEADER SECTION */
    .header-container {
        display: grid;
        grid-template-columns: 927px 453px;
        grid-template-rows: min-content min-content;
        gap: 20px;
        max-width: 1401px;

        .module-name {
            grid-column: 1;
            grid-row: 1 / 3;
            width: 927px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .goals {
            grid-column: 2;
            grid-row: 1;
        }

        .theories {
            grid-column: 2;
            grid-row: 2;
        }

        .goals,
        .theories {
            color: #fff;
            background-color: #000;
            padding: 24px;
            box-sizing: border-box;

            h5,
            p {
                color: #fff;
            }

            h5 {
                margin-bottom: 85px !important;
            }

            ul {
                padding-left: 24px;
                margin-bottom: 0;
                list-style: none;

                li {
                    position: relative;
                    padding-left: 35px;
                    margin-bottom: 11px;
                    font-size: 14px;
                    line-height: 140%;
                    color: #fff;

                    &::before {
                        content: "";
                        position: absolute;
                        left: 0;
                        top: 0;
                        width: 10px;
                        height: 6px;
                        background-image: url("/wp-content/uploads/2025/11/Vector-2.svg");
                        background-size: contain;
                        background-repeat: no-repeat;
                    }

                    &:not(:last-child) {
                        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
                        padding-bottom: 11px;
                    }
                }
            }
        }
    }

    /* ANSWER SECTION */
    .answer-container {
        width: 1401px !important;
        padding: 65px 117px 117px;
        background-color: #dddce5;
        gap: 23px;
        color: #000000;

        h5 {
            margin-bottom: 8px !important;
        }

        .dropdown {
            justify-content: space-between;
            gap: 23px;
            width: 926px;
            border-top: 1px solid #000;
            margin: 0;

            .title {
                margin: 29px 24px 9px 24px !important;
                color: var(--black) !important;
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: calc(100% - 48px);
            }

            /* Icon styling and rotation animation */
            .dropdown-icon {
                display: inline-block;
                width: 32px;
                height: 32px;
                margin-left: auto;
                transition: transform 0.3s ease;
                flex-shrink: 0;
            }

            /* Rotate the icon when open */
            &.is-open .dropdown-icon {
                transform: rotate(180deg);
            }

            /* Hide content when closed */
            &:not(.is-open)>*:not(.title) {
                display: none !important;
            }

            /* Table */
            table {
                max-width: 830px;
                border-collapse: collapse;
                border: 1px solid #000000;
            }

            /* Header */
            thead {
                background: #000000;
            }

            th {
                padding: 29px 24px;
                font-weight: 500;
                font-size: 16px;
                line-height: 140%;
                letter-spacing: -0.02em;
                color: #F0EEE4;
                text-align: left;
                border: 1px solid #000000;
            }

            /* Body Rows */
            tbody tr {
                background: #EEEEF2;
            }

            /* Cells */
            td {
                padding: 29px 24px;
                font-size: 14px;
                line-height: 140%;
                border: 1px solid #000000;
            }

            td:first-child {
                font-weight: 500;
                font-size: 16px;
                letter-spacing: -0.02em;
                color: #000000;
            }

            td:last-child {
                font-weight: 500;
                color: #000000;
            }
        }

        .question-card {
            align-items: flex-start;
            padding: 24px;
            gap: 24px;
            background: #FFFFFF;
            align-self: stretch;

            .question-header {
                align-items: flex-start;
                gap: 8px;
                align-self: stretch;

                .question-label {
                    align-self: stretch;
                }

                .question-text {
                    color: #000000 !important;
                }
            }

            .answer-box {
                align-items: flex-start;
                padding: 24px;
                gap: 16px;
                background: rgba(221, 220, 229, 0.5);
                align-self: stretch;

                .module-tag {
                    box-sizing: border-box;
                    padding: 3px 8px;
                    gap: 8px;
                    background: linear-gradient(0deg, #FFFFFF, #FFFFFF), rgba(255, 255, 255, 0.75);
                    border-radius: 30px;
                    color: #000000 !important;
                }

                .answer-text {
                    align-items: center;
                    align-self: stretch;
                    color: #000000 !important;
                }
            }
        }
    }
}