main {
    padding-top: 80px
}

@media (max-width: 768px) {
    main {
        padding: 0px 20px;
    }
}

.main-content-container {
    display: flex;
    width: 946px;
    padding: 40px;
    margin-bottom: 100px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 40px;
    border-radius: 8px;
    background: #FFF;
    z-index: 2;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .main-content-container {
        width: 100%;
        padding: 28px 24px;
        margin-bottom: 50px;
    }
}

/* Content Page Styles */
.content-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    color: #0B0427;
    text-align: right;
    width: 100%;
}

.content-body {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
    opacity: 0.6;
    text-align: right;
    width: 100%;
}

.content-body p {
    margin-bottom: 0;
}

/* Content Menu List */
.content-menu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.content-menu-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1.5px solid #E1E1E1;
}

.content-menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.content-menu-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
}

.content-menu-item-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 18px;
    color: #000;
    text-align: right;
}

.content-menu-item-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
    opacity: 0.6;
    text-align: right;
}

.content-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 16px;
    background: #2020B3;
    border: 2px solid #fff;
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 34px;
    cursor: pointer;
    transition: background 0.2s ease;
    min-width: 151px;
    height: 50px;
    flex-shrink: 0;
    text-decoration: none;
}

.content-menu-button:hover {
    background: #1a1a99;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .content-title {
        font-size: 26px;
    }

    .content-body {
        font-size: 16px;
    }

    .content-menu-item {
        flex-direction: column;
        align-items: flex-end;
        gap: 16px;
    }

    .content-menu-info {
        padding: 0;
        width: 100%;
    }

    .content-menu-item-title {
        font-size: 20px;
        padding-right: 0;
    }

    .content-menu-item-description {
        font-size: 16px;
    }

    .content-menu-button {
        width: fit-content;
        align-self: flex-start;
        min-width: auto;
    }
}
