.counseling-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.counseling-list li {
    background: #f5f7fa;
    margin-bottom: 10px;
    padding: 12px 15px 12px 40px;
    border-radius: 8px;
    position: relative;
    font-size: 14px;
    transition: 0.3s ease;
}

.counseling-list li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    color: #e97f1b;
    font-weight: bold;
}

.counseling-list li:hover {
    background: #e9f2ff;
    transform: translateX(5px);
}
.twm-title-large h3 {
    font-size: 1em;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #222;
    display: inline-block;
    position: relative;
}

.twm-title-large h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 80px;
    height: 3px;
    background: #ee6d17;
}


.bed-header h1 {
    font-size: 38px;
    font-weight: 700;
    color: #0d3b66;
}

.bed-header h4 {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-bottom: 25px;
}

.bed-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.bed-box {
  
    padding: 25px;
    border-radius: 10px;

}


.bed-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #104777;
}

.bed-grid {
    list-style: none;
    padding: 0;
   display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bed-grid li {
    background: #eef4ff;
    border: 1px solid #f3901b;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
      flex: 1 1 calc(33.33% - 10px);
  min-width: 100px;
}

.bed-list {
    list-style: none;
    padding: 0;
}

.bed-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-weight: 500;
}

.bed-list li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: #eb6f09;
    font-weight: bold;
}

.bed-career-panel {
    display: flex;
    gap: 30px;
    padding: 40px;
    border-radius: 16px;
    margin-top: 50px;
    background: linear-gradient(135deg, #f8fbff, #eef4ff);
    position: relative;
    overflow: hidden;
}

/* Decorative abstract shape */
.bed-career-panel::before {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 200px;
    height: 200px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
}

.career-left {
    flex: 1;
}

.career-left h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0d3b66;
}

.career-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

.career-right {
    flex: 1;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
}

.career-right p {
    font-size: 17px;
    line-height: 1.7;
    color: #091a2b;
}
.point-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.point-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1.7;
    color: #2c2c2c;
}

.point-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #ee691c;   /* academic blue */
    border-radius: 50%;
}

.course-cta {
    background: #0b3d6d;
    padding: 70px 0;
    color: #fff;
    text-align: center;
    margin-top:30px !important;
}
.course-cta p{
    color:#d8d9db ;
}

.course-cta a {
    background: #ff7a00;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
}

.course-cta a:hover {
    background: #fff;
    color: #0b3d6d;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .bed-career-panel {
        flex-direction: column;
        padding: 25px;
    }
}