/* Full Stack Developer Course Section - White Background */
.fullstack-course-section {
    background: #ffffff;
    padding: 40px 60px;
    position: relative;
}

.fullstack-course-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.fullstack-course-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0 auto;
}

/* Content Side */
.fullstack-course-content {
    flex: 1.2;
}

.fullstack-course-header {
    margin-bottom: 25px;
}

.fullstack-course-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.fullstack-course-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.fullstack-course-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin-top: 12px;
    border-radius: 2px;
}

.fullstack-course-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: #4a5568;
    margin: 12px 0 0 0;
    line-height: 1.5;
}

.fullstack-course-divider {
    display: none;
}

.fullstack-course-text-content {
    max-width: 100%;
    margin-top: 5px;
}

.fullstack-course-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 18px;
}

.fullstack-course-text:last-of-type {
    margin-bottom: 0;
}

.fullstack-course-text strong {
    color: #0a0e27;
    font-weight: 700;
}

.fullstack-course-buttons {
    display: flex;
    gap: 18px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.fullstack-course-btn-primary,
.fullstack-course-btn-secondary {
    display: inline-block;
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.fullstack-course-btn-primary {
    background: #fa9805;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(250, 152, 5, 0.3);
}

.fullstack-course-btn-primary:hover {
    background: #e08900;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(250, 152, 5, 0.4);
    color: #ffffff;
}

.fullstack-course-btn-secondary {
    background: transparent;
    color: #0a0e27;
    border: 2px solid #0a0e27;
}

.fullstack-course-btn-secondary:hover {
    background: #0a0e27;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Image Side */
.fullstack-course-image {
    flex: 1;
}

.fullstack-course-image-wrapper {
    width: 100%;
    height: auto;
}

.fullstack-course-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eef2f7;
}

.fullstack-course-image-wrapper img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .fullstack-course-section {
        padding: 60px 30px;
    }
    
    .fullstack-course-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .fullstack-course-content {
        order: 2;
    }
    
    .fullstack-course-image {
        order: 1;
    }
    
    .fullstack-course-title {
        font-size: 32px;
    }
    
    .fullstack-course-title::after {
        width: 50px;
    }
    
    .fullstack-course-subtitle {
        font-size: 20px;
    }
    
    .fullstack-course-text {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 16px;
    }
    
    .fullstack-course-image-wrapper img {
        max-width: 400px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .fullstack-course-section {
        padding: 50px 20px;
    }
    
    .fullstack-course-wrapper {
        gap: 30px;
    }
    
    .fullstack-course-badge {
        font-size: 11px;
        padding: 4px 16px;
        margin-bottom: 10px;
    }
    
    .fullstack-course-title {
        font-size: 28px;
    }
    
    .fullstack-course-title::after {
        width: 40px;
        height: 3px;
        margin-top: 10px;
    }
    
    .fullstack-course-subtitle {
        font-size: 18px;
        margin-top: 10px;
    }
    
    .fullstack-course-header {
        margin-bottom: 20px;
    }
    
    .fullstack-course-text {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 14px;
    }
    
    .fullstack-course-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-top: 20px;
    }
    
    .fullstack-course-btn-primary,
    .fullstack-course-btn-secondary {
        width: 100%;
        max-width: 350px;
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .fullstack-course-image-wrapper img {
        max-width: 100%;
        border-radius: 12px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .fullstack-course-section {
        padding: 40px 15px;
    }
    
    .fullstack-course-title {
        font-size: 24px;
    }
    
    .fullstack-course-title::after {
        width: 35px;
        height: 3px;
        margin-top: 8px;
    }
    
    .fullstack-course-subtitle {
        font-size: 16px;
        margin-top: 8px;
    }
    
    .fullstack-course-text {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    
    .fullstack-course-btn-primary,
    .fullstack-course-btn-secondary {
        padding: 11px 24px;
        font-size: 14px;
        max-width: 100%;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .fullstack-course-title {
        font-size: 22px;
    }
    
    .fullstack-course-subtitle {
        font-size: 14px;
    }
    
    .fullstack-course-text {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
}
/* Course Overview Section - dae2eb Background */
.course-overview-section {
    background: #dae2eb;
    padding: 40px 60px;
    position: relative;
}

.course-overview-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.course-overview-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.course-overview-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.course-overview-header {
    text-align: center;
    margin-bottom: 25px;
}

.course-overview-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.course-overview-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.course-overview-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.course-overview-content {
    max-width: 100%;
}

.course-overview-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 18px;
}

.course-overview-text:last-of-type {
    margin-bottom: 0;
}

.course-overview-text strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .course-overview-section {
        padding: 60px 30px;
    }
    
    .course-overview-wrapper {
        padding: 40px 35px;
        border-radius: 16px;
    }
    
    .course-overview-title {
        font-size: 30px;
    }
    
    .course-overview-text {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 16px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .course-overview-section {
        padding: 50px 20px;
    }
    
    .course-overview-wrapper {
        padding: 30px 25px;
        border-radius: 14px;
    }
    
    .course-overview-title {
        font-size: 26px;
    }
    
    .course-overview-divider {
        width: 50px;
        height: 3px;
        margin-top: 10px;
    }
    
    .course-overview-header {
        margin-bottom: 20px;
    }
    
    .course-overview-text {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 14px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .course-overview-section {
        padding: 40px 15px;
    }
    
    .course-overview-wrapper {
        padding: 25px 18px;
        border-radius: 12px;
    }
    
    .course-overview-badge {
        font-size: 11px;
        padding: 4px 14px;
        margin-bottom: 8px;
    }
    
    .course-overview-title {
        font-size: 22px;
    }
    
    .course-overview-divider {
        width: 40px;
        height: 3px;
        margin-top: 8px;
    }
    
    .course-overview-header {
        margin-bottom: 18px;
    }
    
    .course-overview-text {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 12px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .course-overview-wrapper {
        padding: 20px 14px;
    }
    
    .course-overview-title {
        font-size: 20px;
    }
    
    .course-overview-text {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
}
/* Why Learn Full Stack Development Section - White Background */
.why-fullstack-section {
    background: #ffffff;
    padding: 40px 60px;
    position: relative;
}

.why-fullstack-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.why-fullstack-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.why-fullstack-header {
    text-align: center;
    margin-bottom: 25px;
}

.why-fullstack-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.why-fullstack-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.why-fullstack-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.why-fullstack-content {
    max-width: 100%;
}

.why-fullstack-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 18px;
}

.why-fullstack-text:last-of-type {
    margin-bottom: 0;
}

.why-fullstack-text strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .why-fullstack-section {
        padding: 60px 30px;
    }
    
    .why-fullstack-title {
        font-size: 30px;
    }
    
    .why-fullstack-text {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 16px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .why-fullstack-section {
        padding: 50px 20px;
    }
    
    .why-fullstack-title {
        font-size: 26px;
    }
    
    .why-fullstack-divider {
        width: 50px;
        height: 3px;
        margin-top: 10px;
    }
    
    .why-fullstack-header {
        margin-bottom: 20px;
    }
    
    .why-fullstack-text {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 14px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .why-fullstack-section {
        padding: 40px 15px;
    }
    
    .why-fullstack-badge {
        font-size: 11px;
        padding: 4px 14px;
        margin-bottom: 8px;
    }
    
    .why-fullstack-title {
        font-size: 22px;
    }
    
    .why-fullstack-divider {
        width: 40px;
        height: 3px;
        margin-top: 8px;
    }
    
    .why-fullstack-header {
        margin-bottom: 18px;
    }
    
    .why-fullstack-text {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 12px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .why-fullstack-title {
        font-size: 20px;
    }
    
    .why-fullstack-text {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
}
/* Why Choose Our Full Stack Course Section - dae2eb Background */
.why-choose-fullstack-section {
    background: #dae2eb;
    padding: 40px 60px;
    position: relative;
}

.why-choose-fullstack-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.why-choose-fullstack-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.why-choose-fullstack-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.why-choose-fullstack-header {
    text-align: center;
    margin-bottom: 25px;
}

.why-choose-fullstack-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.why-choose-fullstack-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.why-choose-fullstack-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.why-choose-fullstack-content {
    max-width: 100%;
}

.why-choose-fullstack-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 25px;
}

.why-choose-fullstack-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

.why-choose-fullstack-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.why-choose-fullstack-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #fa9805;
    border-radius: 2px;
}

.why-choose-fullstack-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    margin-bottom: 25px;
}

.why-choose-fullstack-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.why-choose-fullstack-item:hover {
    transform: translateX(5px);
    border-color: #fa9805;
    background: #fffbf5;
}

.why-choose-fullstack-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #fa9805;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.why-choose-fullstack-label {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
}

.why-choose-fullstack-outro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.why-choose-fullstack-outro strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .why-choose-fullstack-section {
        padding: 60px 30px;
    }
    
    .why-choose-fullstack-wrapper {
        padding: 40px 35px;
        border-radius: 16px;
    }
    
    .why-choose-fullstack-title {
        font-size: 30px;
    }
    
    .why-choose-fullstack-intro {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .why-choose-fullstack-subtitle {
        font-size: 18px;
    }
    
    .why-choose-fullstack-grid {
        gap: 10px 20px;
    }
    
    .why-choose-fullstack-item {
        padding: 8px 12px;
    }
    
    .why-choose-fullstack-label {
        font-size: 14px;
    }
    
    .why-choose-fullstack-outro {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .why-choose-fullstack-section {
        padding: 50px 20px;
    }
    
    .why-choose-fullstack-wrapper {
        padding: 30px 25px;
        border-radius: 14px;
    }
    
    .why-choose-fullstack-title {
        font-size: 26px;
    }
    
    .why-choose-fullstack-divider {
        width: 50px;
        height: 3px;
        margin-top: 10px;
    }
    
    .why-choose-fullstack-header {
        margin-bottom: 20px;
    }
    
    .why-choose-fullstack-intro {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 18px;
    }
    
    .why-choose-fullstack-subtitle {
        font-size: 17px;
        margin-bottom: 16px;
        padding-bottom: 10px;
    }
    
    .why-choose-fullstack-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .why-choose-fullstack-item {
        padding: 10px 14px;
    }
    
    .why-choose-fullstack-label {
        font-size: 14px;
    }
    
    .why-choose-fullstack-outro {
        font-size: 14px;
        line-height: 1.8;
        padding-top: 16px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .why-choose-fullstack-section {
        padding: 40px 15px;
    }
    
    .why-choose-fullstack-wrapper {
        padding: 25px 18px;
        border-radius: 12px;
    }
    
    .why-choose-fullstack-badge {
        font-size: 11px;
        padding: 4px 14px;
        margin-bottom: 8px;
    }
    
    .why-choose-fullstack-title {
        font-size: 22px;
    }
    
    .why-choose-fullstack-divider {
        width: 40px;
        height: 3px;
        margin-top: 8px;
    }
    
    .why-choose-fullstack-intro {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .why-choose-fullstack-subtitle {
        font-size: 16px;
        margin-bottom: 14px;
        padding-bottom: 8px;
    }
    
    .why-choose-fullstack-subtitle::after {
        width: 40px;
        height: 2px;
    }
    
    .why-choose-fullstack-grid {
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .why-choose-fullstack-item {
        padding: 8px 12px;
        gap: 10px;
        border-radius: 8px;
    }
    
    .why-choose-fullstack-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    
    .why-choose-fullstack-label {
        font-size: 13px;
    }
    
    .why-choose-fullstack-outro {
        font-size: 13px;
        line-height: 1.7;
        padding-top: 14px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .why-choose-fullstack-wrapper {
        padding: 20px 14px;
    }
    
    .why-choose-fullstack-title {
        font-size: 20px;
    }
    
    .why-choose-fullstack-intro {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .why-choose-fullstack-label {
        font-size: 12px;
    }
    
    .why-choose-fullstack-outro {
        font-size: 12px;
        line-height: 1.6;
    }
}
/* What You Will Learn Section - White Background */
.what-learn-section {
    background: #ffffff;
    padding: 40px 60px;
    position: relative;
}

.what-learn-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.what-learn-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.what-learn-header {
    text-align: center;
    margin-bottom: 30px;
}

.what-learn-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.what-learn-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.what-learn-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.what-learn-content {
    max-width: 100%;
}

.what-learn-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.what-learn-intro:last-of-type {
    margin-bottom: 25px;
}

.what-learn-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Module Styles */
.what-learn-module {
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 14px;
    margin-bottom: 20px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.what-learn-module:hover {
    border-color: #fa9805;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.what-learn-module-highlight {
    background: rgba(250, 152, 5, 0.05);
    border-left: 4px solid #fa9805;
    border-color: rgba(250, 152, 5, 0.15);
}

.what-learn-module-highlight:hover {
    border-color: #fa9805;
    border-left-color: #fa9805;
}

.what-learn-module-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 8px 0;
}

.what-learn-module-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 14px 0;
    text-align: justify;
}

.what-learn-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.what-learn-tag {
    background: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.what-learn-tag:hover {
    border-color: #fa9805;
    background: #fffbf5;
    transform: translateY(-2px);
}

.what-learn-outro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.what-learn-outro strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .what-learn-section {
        padding: 60px 30px;
    }
    
    .what-learn-title {
        font-size: 32px;
    }
    
    .what-learn-intro {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 14px;
    }
    
    .what-learn-module {
        padding: 20px 25px;
    }
    
    .what-learn-module-title {
        font-size: 18px;
    }
    
    .what-learn-module-desc {
        font-size: 14px;
    }
    
    .what-learn-tag {
        font-size: 12px;
        padding: 5px 14px;
    }
    
    .what-learn-outro {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .what-learn-section {
        padding: 50px 20px;
    }
    
    .what-learn-title {
        font-size: 28px;
    }
    
    .what-learn-divider {
        width: 50px;
        height: 3px;
        margin-top: 10px;
    }
    
    .what-learn-header {
        margin-bottom: 25px;
    }
    
    .what-learn-intro {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 12px;
    }
    
    .what-learn-intro:last-of-type {
        margin-bottom: 20px;
    }
    
    .what-learn-module {
        padding: 18px 20px;
        border-radius: 12px;
        margin-bottom: 16px;
    }
    
    .what-learn-module-title {
        font-size: 17px;
    }
    
    .what-learn-module-desc {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .what-learn-tags {
        gap: 8px;
    }
    
    .what-learn-tag {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .what-learn-outro {
        font-size: 14px;
        line-height: 1.8;
        padding-top: 16px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .what-learn-section {
        padding: 40px 15px;
    }
    
    .what-learn-badge {
        font-size: 11px;
        padding: 4px 14px;
        margin-bottom: 8px;
    }
    
    .what-learn-title {
        font-size: 24px;
    }
    
    .what-learn-divider {
        width: 40px;
        height: 3px;
        margin-top: 8px;
    }
    
    .what-learn-header {
        margin-bottom: 20px;
    }
    
    .what-learn-intro {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 10px;
    }
    
    .what-learn-intro:last-of-type {
        margin-bottom: 16px;
    }
    
    .what-learn-module {
        padding: 14px 16px;
        border-radius: 10px;
        margin-bottom: 14px;
    }
    
    .what-learn-module-title {
        font-size: 16px;
    }
    
    .what-learn-module-desc {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
    
    .what-learn-tags {
        gap: 6px;
    }
    
    .what-learn-tag {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .what-learn-outro {
        font-size: 13px;
        line-height: 1.7;
        padding-top: 14px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .what-learn-title {
        font-size: 22px;
    }
    
    .what-learn-module {
        padding: 12px 14px;
    }
    
    .what-learn-module-title {
        font-size: 15px;
    }
    
    .what-learn-module-desc {
        font-size: 12px;
    }
    
    .what-learn-tag {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .what-learn-outro {
        font-size: 12px;
        line-height: 1.6;
    }
}
/* Course Curriculum Section - Different Design */
.curriculum-section {
    background: #dae2eb;
    padding: 40px 60px;
    position: relative;
}

.curriculum-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.curriculum-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.curriculum-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.curriculum-header {
    text-align: center;
    margin-bottom: 25px;
}

.curriculum-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.curriculum-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.curriculum-title .highlight-text {
    color: #fa9805;
    position: relative;
}

.curriculum-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(250, 152, 5, 0.2);
    border-radius: 2px;
}

.curriculum-divider {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #fa9805, #fcd34d);
    margin: 12px auto 0;
    border-radius: 2px;
}

.curriculum-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 30px;
    padding: 0 10px;
}

.curriculum-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Timeline Layout */
.curriculum-timeline {
    position: relative;
    padding-left: 30px;
}

.curriculum-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: linear-gradient(180deg, #fa9805, rgba(250, 152, 5, 0.1));
    border-radius: 2px;
}

.curriculum-module {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.curriculum-module:last-child {
    margin-bottom: 0;
}

.curriculum-module-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 40px;
}

.curriculum-module-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fa9805, #e08900);
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(250, 152, 5, 0.3);
    transition: all 0.3s ease;
}

.curriculum-module:hover .curriculum-module-number {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(250, 152, 5, 0.4);
}

.curriculum-module-line {
    flex: 1;
    width: 2px;
    background: #eef2f7;
    margin: 6px 0;
}

.curriculum-module:last-child .curriculum-module-line {
    display: none;
}

.curriculum-module-content {
    flex: 1;
    background: #f8f9fa;
    padding: 18px 22px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.curriculum-module-content:hover {
    border-color: #fa9805;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transform: translateX(5px);
}

.curriculum-module-highlight .curriculum-module-content {
    background: rgba(250, 152, 5, 0.05);
    border-left: 4px solid #fa9805;
    border-color: rgba(250, 152, 5, 0.15);
}

.curriculum-module-highlight .curriculum-module-content:hover {
    border-color: #fa9805;
    border-left-color: #fa9805;
}

.curriculum-module-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.curriculum-module-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.curriculum-module-title {
    font-size: 17px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0;
}

.curriculum-module-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.curriculum-tag {
    background: #ffffff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: #1f2937;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.curriculum-tag:hover {
    border-color: #fa9805;
    background: #fffbf5;
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(250, 152, 5, 0.1);
}

.curriculum-outro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin: 0;
    padding-top: 25px;
    margin-top: 10px;
    border-top: 1px solid #eef2f7;
}

.curriculum-outro strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .curriculum-section {
        padding: 60px 30px;
    }
    
    .curriculum-wrapper {
        padding: 40px 35px;
        border-radius: 16px;
    }
    
    .curriculum-title {
        font-size: 32px;
    }
    
    .curriculum-intro {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 25px;
    }
    
    .curriculum-timeline {
        padding-left: 25px;
    }
    
    .curriculum-timeline::before {
        left: 23px;
    }
    
    .curriculum-module-left {
        width: 35px;
    }
    
    .curriculum-module-number {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
    
    .curriculum-module-content {
        padding: 16px 18px;
    }
    
    .curriculum-module-title {
        font-size: 16px;
    }
    
    .curriculum-tag {
        font-size: 12px;
        padding: 3px 12px;
    }
    
    .curriculum-outro {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .curriculum-section {
        padding: 50px 20px;
    }
    
    .curriculum-wrapper {
        padding: 30px 20px;
        border-radius: 14px;
    }
    
    .curriculum-title {
        font-size: 28px;
    }
    
    .curriculum-divider {
        width: 50px;
        height: 3px;
    }
    
    .curriculum-header {
        margin-bottom: 20px;
    }
    
    .curriculum-intro {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 20px;
        padding: 0;
    }
    
    .curriculum-timeline {
        padding-left: 20px;
    }
    
    .curriculum-timeline::before {
        left: 18px;
    }
    
    .curriculum-module {
        gap: 15px;
        margin-bottom: 16px;
    }
    
    .curriculum-module-left {
        width: 30px;
    }
    
    .curriculum-module-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .curriculum-module-content {
        padding: 14px 16px;
        border-radius: 12px;
    }
    
    .curriculum-module-icon {
        font-size: 18px;
    }
    
    .curriculum-module-title {
        font-size: 15px;
    }
    
    .curriculum-module-tags {
        gap: 6px;
    }
    
    .curriculum-tag {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .curriculum-outro {
        font-size: 14px;
        line-height: 1.8;
        padding-top: 18px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .curriculum-section {
        padding: 40px 15px;
    }
    
    .curriculum-wrapper {
        padding: 25px 15px;
        border-radius: 12px;
    }
    
    .curriculum-badge {
        font-size: 12px;
        padding: 4px 16px;
        margin-bottom: 10px;
    }
    
    .curriculum-title {
        font-size: 24px;
    }
    
    .curriculum-title .highlight-text::after {
        height: 3px;
    }
    
    .curriculum-divider {
        width: 40px;
        height: 3px;
        margin-top: 10px;
    }
    
    .curriculum-intro {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 16px;
    }
    
    .curriculum-timeline {
        padding-left: 15px;
    }
    
    .curriculum-timeline::before {
        left: 13px;
    }
    
    .curriculum-module {
        gap: 12px;
        margin-bottom: 14px;
    }
    
    .curriculum-module-left {
        width: 25px;
    }
    
    .curriculum-module-number {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }
    
    .curriculum-module-content {
        padding: 12px 14px;
        border-radius: 10px;
    }
    
    .curriculum-module-icon {
        font-size: 16px;
    }
    
    .curriculum-module-title {
        font-size: 14px;
    }
    
    .curriculum-module-tags {
        gap: 5px;
    }
    
    .curriculum-tag {
        font-size: 10px;
        padding: 2px 8px;
    }
    
    .curriculum-outro {
        font-size: 13px;
        line-height: 1.7;
        padding-top: 14px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .curriculum-wrapper {
        padding: 20px 12px;
    }
    
    .curriculum-title {
        font-size: 22px;
    }
    
    .curriculum-module-content {
        padding: 10px 12px;
    }
    
    .curriculum-module-title {
        font-size: 13px;
    }
    
    .curriculum-tag {
        font-size: 9px;
        padding: 2px 6px;
    }
    
    .curriculum-outro {
        font-size: 12px;
        line-height: 1.6;
    }
}
/* Who Can Join This Course Section - White Background */
.who-join-section {
    background: #ffffff;
    padding: 40px 60px;
    position: relative;
}

.who-join-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.who-join-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.who-join-header {
    text-align: center;
    margin-bottom: 25px;
}

.who-join-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.who-join-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.who-join-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.who-join-content {
    max-width: 100%;
}

.who-join-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 25px;
}

.who-join-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

.who-join-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.who-join-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #fa9805;
    border-radius: 2px;
}

.who-join-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 25px;
}

.who-join-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    background: #f8f9fa;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.who-join-item:hover {
    transform: translateY(-4px);
    border-color: #fa9805;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    background: #fffbf5;
}

.who-join-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(250, 152, 5, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.who-join-item:hover .who-join-icon-wrapper {
    background: rgba(250, 152, 5, 0.18);
}

.who-join-icon {
    font-size: 22px;
}

.who-join-item-content {
    flex: 1;
}

.who-join-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 4px 0;
}

.who-join-item-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    text-align: justify;
}

.who-join-outro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.who-join-outro strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .who-join-section {
        padding: 60px 30px;
    }
    
    .who-join-title {
        font-size: 32px;
    }
    
    .who-join-intro {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .who-join-subtitle {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .who-join-grid {
        gap: 14px;
    }
    
    .who-join-item {
        padding: 16px 18px;
    }
    
    .who-join-icon-wrapper {
        width: 44px;
        height: 44px;
    }
    
    .who-join-icon {
        font-size: 20px;
    }
    
    .who-join-item-title {
        font-size: 15px;
    }
    
    .who-join-item-text {
        font-size: 13px;
    }
    
    .who-join-outro {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .who-join-section {
        padding: 50px 20px;
    }
    
    .who-join-title {
        font-size: 28px;
    }
    
    .who-join-divider {
        width: 50px;
        height: 3px;
        margin-top: 10px;
    }
    
    .who-join-header {
        margin-bottom: 20px;
    }
    
    .who-join-intro {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 18px;
    }
    
    .who-join-subtitle {
        font-size: 17px;
        margin-bottom: 16px;
        padding-bottom: 10px;
    }
    
    .who-join-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .who-join-item {
        padding: 14px 16px;
        border-radius: 12px;
    }
    
    .who-join-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .who-join-icon {
        font-size: 18px;
    }
    
    .who-join-item-title {
        font-size: 14px;
    }
    
    .who-join-item-text {
        font-size: 13px;
    }
    
    .who-join-outro {
        font-size: 14px;
        line-height: 1.8;
        padding-top: 16px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .who-join-section {
        padding: 40px 15px;
    }
    
    .who-join-badge {
        font-size: 11px;
        padding: 4px 14px;
        margin-bottom: 8px;
    }
    
    .who-join-title {
        font-size: 24px;
    }
    
    .who-join-divider {
        width: 40px;
        height: 3px;
        margin-top: 8px;
    }
    
    .who-join-header {
        margin-bottom: 18px;
    }
    
    .who-join-intro {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 16px;
    }
    
    .who-join-subtitle {
        font-size: 16px;
        margin-bottom: 14px;
        padding-bottom: 8px;
    }
    
    .who-join-subtitle::after {
        width: 40px;
        height: 2px;
    }
    
    .who-join-grid {
        gap: 10px;
        margin-bottom: 16px;
    }
    
    .who-join-item {
        padding: 12px 14px;
        gap: 12px;
        border-radius: 10px;
    }
    
    .who-join-icon-wrapper {
        width: 36px;
        height: 36px;
    }
    
    .who-join-icon {
        font-size: 16px;
    }
    
    .who-join-item-title {
        font-size: 14px;
    }
    
    .who-join-item-text {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .who-join-outro {
        font-size: 13px;
        line-height: 1.7;
        padding-top: 14px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .who-join-title {
        font-size: 22px;
    }
    
    .who-join-item {
        padding: 10px 12px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .who-join-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .who-join-item-title {
        text-align: center;
    }
    
    .who-join-item-text {
        text-align: center;
    }
    
    .who-join-outro {
        font-size: 12px;
        line-height: 1.6;
    }
}
/* Career Opportunities Section - dae2eb Background */
.career-opportunities-section {
    background: #dae2eb;
    padding: 40px 60px;
    position: relative;
}

.career-opportunities-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.career-opportunities-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.career-opportunities-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.career-opportunities-header {
    text-align: center;
    margin-bottom: 25px;
}

.career-opportunities-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.career-opportunities-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.career-opportunities-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.career-opportunities-content {
    max-width: 100%;
}

.career-opportunities-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.career-opportunities-intro:last-of-type {
    margin-bottom: 25px;
}

.career-opportunities-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

.career-opportunities-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.career-opportunities-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #fa9805;
    border-radius: 2px;
}

.career-opportunities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 25px;
}

.career-opportunities-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.career-opportunities-item:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: #fa9805;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    background: #fffbf5;
}

.career-opportunities-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.career-opportunities-label {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
}

.career-opportunities-outro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.career-opportunities-outro strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .career-opportunities-section {
        padding: 60px 30px;
    }
    
    .career-opportunities-wrapper {
        padding: 40px 35px;
        border-radius: 16px;
    }
    
    .career-opportunities-title {
        font-size: 30px;
    }
    
    .career-opportunities-intro {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 14px;
    }
    
    .career-opportunities-intro:last-of-type {
        margin-bottom: 20px;
    }
    
    .career-opportunities-subtitle {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .career-opportunities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .career-opportunities-item {
        padding: 12px 16px;
    }
    
    .career-opportunities-label {
        font-size: 14px;
    }
    
    .career-opportunities-outro {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .career-opportunities-section {
        padding: 50px 20px;
    }
    
    .career-opportunities-wrapper {
        padding: 30px 25px;
        border-radius: 14px;
    }
    
    .career-opportunities-title {
        font-size: 26px;
    }
    
    .career-opportunities-divider {
        width: 50px;
        height: 3px;
        margin-top: 10px;
    }
    
    .career-opportunities-header {
        margin-bottom: 20px;
    }
    
    .career-opportunities-intro {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 12px;
    }
    
    .career-opportunities-intro:last-of-type {
        margin-bottom: 18px;
    }
    
    .career-opportunities-subtitle {
        font-size: 17px;
        margin-bottom: 16px;
        padding-bottom: 10px;
    }
    
    .career-opportunities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .career-opportunities-item {
        padding: 10px 14px;
        border-radius: 10px;
        gap: 10px;
    }
    
    .career-opportunities-icon {
        font-size: 18px;
    }
    
    .career-opportunities-label {
        font-size: 13px;
    }
    
    .career-opportunities-outro {
        font-size: 14px;
        line-height: 1.8;
        padding-top: 16px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .career-opportunities-section {
        padding: 40px 15px;
    }
    
    .career-opportunities-wrapper {
        padding: 25px 18px;
        border-radius: 12px;
    }
    
    .career-opportunities-badge {
        font-size: 11px;
        padding: 4px 14px;
        margin-bottom: 8px;
    }
    
    .career-opportunities-title {
        font-size: 22px;
    }
    
    .career-opportunities-divider {
        width: 40px;
        height: 3px;
        margin-top: 8px;
    }
    
    .career-opportunities-header {
        margin-bottom: 18px;
    }
    
    .career-opportunities-intro {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 10px;
    }
    
    .career-opportunities-intro:last-of-type {
        margin-bottom: 16px;
    }
    
    .career-opportunities-subtitle {
        font-size: 16px;
        margin-bottom: 14px;
        padding-bottom: 8px;
    }
    
    .career-opportunities-subtitle::after {
        width: 40px;
        height: 2px;
    }
    
    .career-opportunities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .career-opportunities-item {
        padding: 8px 12px;
        border-radius: 8px;
        gap: 8px;
    }
    
    .career-opportunities-icon {
        font-size: 16px;
    }
    
    .career-opportunities-label {
        font-size: 12px;
    }
    
    .career-opportunities-outro {
        font-size: 13px;
        line-height: 1.7;
        padding-top: 14px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .career-opportunities-wrapper {
        padding: 20px 14px;
    }
    
    .career-opportunities-title {
        font-size: 20px;
    }
    
    .career-opportunities-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .career-opportunities-item {
        padding: 10px 14px;
        justify-content: center;
    }
    
    .career-opportunities-label {
        font-size: 13px;
    }
    
    .career-opportunities-outro {
        font-size: 12px;
        line-height: 1.6;
    }
}
/* Why Choose Well Spring Talent Solutions Section - White Background */
.why-choose-wellspring-fullstack-section {
    background: #ffffff;
    padding: 40px 60px;
    position: relative;
}

.why-choose-wellspring-fullstack-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.why-choose-wellspring-fullstack-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-wellspring-fullstack-header {
    text-align: center;
    margin-bottom: 25px;
}

.why-choose-wellspring-fullstack-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.why-choose-wellspring-fullstack-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.why-choose-wellspring-fullstack-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #4a5568;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.why-choose-wellspring-fullstack-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.why-choose-wellspring-fullstack-content {
    max-width: 100%;
}

.why-choose-wellspring-fullstack-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.why-choose-wellspring-fullstack-intro:last-of-type {
    margin-bottom: 25px;
}

.why-choose-wellspring-fullstack-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

.why-choose-wellspring-fullstack-subtitle-two {
    font-size: 20px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.why-choose-wellspring-fullstack-subtitle-two::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #fa9805;
    border-radius: 2px;
}

.why-choose-wellspring-fullstack-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 25px;
}

.why-choose-wellspring-fullstack-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.why-choose-wellspring-fullstack-item:hover {
    transform: translateY(-4px);
    border-color: #fa9805;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    background: #fffbf5;
}

.why-choose-wellspring-fullstack-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-choose-wellspring-fullstack-item-content {
    flex: 1;
}

.why-choose-wellspring-fullstack-item-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 2px;
}

.why-choose-wellspring-fullstack-item-text {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #4a5568;
    line-height: 1.5;
}

.why-choose-wellspring-fullstack-outro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.why-choose-wellspring-fullstack-outro strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .why-choose-wellspring-fullstack-section {
        padding: 60px 30px;
    }
    
    .why-choose-wellspring-fullstack-title {
        font-size: 32px;
    }
    
    .why-choose-wellspring-fullstack-subtitle {
        font-size: 18px;
    }
    
    .why-choose-wellspring-fullstack-intro {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 14px;
    }
    
    .why-choose-wellspring-fullstack-intro:last-of-type {
        margin-bottom: 20px;
    }
    
    .why-choose-wellspring-fullstack-subtitle-two {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .why-choose-wellspring-fullstack-grid {
        gap: 12px;
    }
    
    .why-choose-wellspring-fullstack-item {
        padding: 14px 16px;
    }
    
    .why-choose-wellspring-fullstack-icon {
        font-size: 22px;
    }
    
    .why-choose-wellspring-fullstack-item-title {
        font-size: 14px;
    }
    
    .why-choose-wellspring-fullstack-item-text {
        font-size: 13px;
    }
    
    .why-choose-wellspring-fullstack-outro {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .why-choose-wellspring-fullstack-section {
        padding: 50px 20px;
    }
    
    .why-choose-wellspring-fullstack-title {
        font-size: 28px;
    }
    
    .why-choose-wellspring-fullstack-subtitle {
        font-size: 17px;
        margin-top: 6px;
    }
    
    .why-choose-wellspring-fullstack-divider {
        width: 50px;
        height: 3px;
        margin-top: 10px;
    }
    
    .why-choose-wellspring-fullstack-header {
        margin-bottom: 20px;
    }
    
    .why-choose-wellspring-fullstack-intro {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 12px;
    }
    
    .why-choose-wellspring-fullstack-intro:last-of-type {
        margin-bottom: 18px;
    }
    
    .why-choose-wellspring-fullstack-subtitle-two {
        font-size: 17px;
        margin-bottom: 16px;
        padding-bottom: 10px;
    }
    
    .why-choose-wellspring-fullstack-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .why-choose-wellspring-fullstack-item {
        padding: 12px 16px;
        border-radius: 10px;
    }
    
    .why-choose-wellspring-fullstack-icon {
        font-size: 20px;
    }
    
    .why-choose-wellspring-fullstack-item-title {
        font-size: 14px;
    }
    
    .why-choose-wellspring-fullstack-item-text {
        font-size: 13px;
    }
    
    .why-choose-wellspring-fullstack-outro {
        font-size: 14px;
        line-height: 1.8;
        padding-top: 16px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .why-choose-wellspring-fullstack-section {
        padding: 40px 15px;
    }
    
    .why-choose-wellspring-fullstack-badge {
        font-size: 11px;
        padding: 4px 14px;
        margin-bottom: 8px;
    }
    
    .why-choose-wellspring-fullstack-title {
        font-size: 24px;
    }
    
    .why-choose-wellspring-fullstack-subtitle {
        font-size: 15px;
    }
    
    .why-choose-wellspring-fullstack-divider {
        width: 40px;
        height: 3px;
        margin-top: 8px;
    }
    
    .why-choose-wellspring-fullstack-header {
        margin-bottom: 18px;
    }
    
    .why-choose-wellspring-fullstack-intro {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 10px;
    }
    
    .why-choose-wellspring-fullstack-intro:last-of-type {
        margin-bottom: 16px;
    }
    
    .why-choose-wellspring-fullstack-subtitle-two {
        font-size: 16px;
        margin-bottom: 14px;
        padding-bottom: 8px;
    }
    
    .why-choose-wellspring-fullstack-subtitle-two::after {
        width: 40px;
        height: 2px;
    }
    
    .why-choose-wellspring-fullstack-grid {
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .why-choose-wellspring-fullstack-item {
        padding: 10px 14px;
        gap: 12px;
        border-radius: 8px;
    }
    
    .why-choose-wellspring-fullstack-icon {
        font-size: 18px;
    }
    
    .why-choose-wellspring-fullstack-item-title {
        font-size: 13px;
    }
    
    .why-choose-wellspring-fullstack-item-text {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .why-choose-wellspring-fullstack-outro {
        font-size: 13px;
        line-height: 1.7;
        padding-top: 14px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .why-choose-wellspring-fullstack-title {
        font-size: 22px;
    }
    
    .why-choose-wellspring-fullstack-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 12px 14px;
    }
    
    .why-choose-wellspring-fullstack-icon {
        font-size: 20px;
        margin-top: 0;
    }
    
    .why-choose-wellspring-fullstack-outro {
        font-size: 12px;
        line-height: 1.6;
    }
}
/* Student Testimonials Section - dae2eb Background */
.testimonials-course-section {
    background: #dae2eb;
    padding: 40px 60px;
    position: relative;
}

.testimonials-course-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.testimonials-course-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.testimonials-course-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.testimonials-course-header {
    text-align: center;
    margin-bottom: 25px;
}

.testimonials-course-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.testimonials-course-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.testimonials-course-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #4a5568;
    margin: 6px 0 0 0;
    line-height: 1.4;
}

.testimonials-course-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.testimonials-course-content {
    max-width: 100%;
}

.testimonials-course-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.testimonials-course-text:last-of-type {
    margin-bottom: 0;
}

.testimonials-course-text strong {
    color: #0a0e27;
    font-weight: 700;
}

.testimonials-course-highlight {
    font-size: 17px;
    color: #0a0e27;
    padding: 15px 20px;
    background: rgba(250, 152, 5, 0.05);
    border-radius: 12px;
    border-left: 4px solid #fa9805;
    margin-top: 5px;
}

.testimonials-course-highlight strong {
    color: #0a0e27;
}

/* Testimonial Cards */
.testimonials-course-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 25px 20px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: #fa9805;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    background: #fffbf5;
}

.testimonial-card-stars {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #fa9805;
}

.testimonial-card-quote {
    font-size: 14px;
    line-height: 1.7;
    color: #1f2937;
    margin: 0 0 15px 0;
    flex: 1;
    text-align: justify;
}

.testimonial-card-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eef2f7;
    padding-top: 12px;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: #0a0e27;
}

.author-role {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .testimonials-course-section {
        padding: 60px 30px;
    }
    
    .testimonials-course-wrapper {
        padding: 40px 35px;
        border-radius: 16px;
    }
    
    .testimonials-course-title {
        font-size: 32px;
    }
    
    .testimonials-course-subtitle {
        font-size: 18px;
    }
    
    .testimonials-course-text {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 14px;
    }
    
    .testimonials-course-highlight {
        font-size: 16px;
        padding: 12px 18px;
    }
    
    .testimonials-course-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .testimonials-course-section {
        padding: 50px 20px;
    }
    
    .testimonials-course-wrapper {
        padding: 30px 25px;
        border-radius: 14px;
    }
    
    .testimonials-course-title {
        font-size: 28px;
    }
    
    .testimonials-course-subtitle {
        font-size: 17px;
        margin-top: 5px;
    }
    
    .testimonials-course-divider {
        width: 50px;
        height: 3px;
        margin-top: 10px;
    }
    
    .testimonials-course-header {
        margin-bottom: 20px;
    }
    
    .testimonials-course-text {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 12px;
    }
    
    .testimonials-course-highlight {
        font-size: 15px;
        padding: 12px 16px;
        margin-top: 0;
    }
    
    .testimonials-course-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }
    
    .testimonial-card {
        padding: 20px 18px;
        border-radius: 12px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .testimonials-course-section {
        padding: 40px 15px;
    }
    
    .testimonials-course-wrapper {
        padding: 25px 18px;
        border-radius: 12px;
    }
    
    .testimonials-course-badge {
        font-size: 11px;
        padding: 4px 14px;
        margin-bottom: 8px;
    }
    
    .testimonials-course-title {
        font-size: 24px;
    }
    
    .testimonials-course-subtitle {
        font-size: 15px;
    }
    
    .testimonials-course-divider {
        width: 40px;
        height: 3px;
        margin-top: 8px;
    }
    
    .testimonials-course-header {
        margin-bottom: 18px;
    }
    
    .testimonials-course-text {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 10px;
    }
    
    .testimonials-course-highlight {
        font-size: 14px;
        padding: 10px 14px;
        border-left-width: 3px;
    }
    
    .testimonials-course-cards {
        gap: 14px;
        margin-top: 16px;
    }
    
    .testimonial-card {
        padding: 18px 16px;
        border-radius: 10px;
    }
    
    .testimonial-card-stars {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .testimonial-card-quote {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    .author-name {
        font-size: 14px;
    }
    
    .author-role {
        font-size: 12px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .testimonials-course-wrapper {
        padding: 20px 14px;
    }
    
    .testimonials-course-title {
        font-size: 22px;
    }
    
    .testimonials-course-text {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .testimonials-course-highlight {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .testimonial-card {
        padding: 14px 12px;
    }
    
    .testimonial-card-quote {
        font-size: 12px;
    }
}

/* FAQ Section - White Background with Smooth Animations */
.faq-section {
    background: #ffffff;
    padding: 40px 60px;
    position: relative;
}

.faq-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 1px;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #eef2f7;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #fa9805;
}

.faq-item.active {
    border-color: #fa9805;
    box-shadow: 0 4px 20px rgba(250, 152, 5, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #0a0e27;
    text-align: left;
    transition: all 0.3s ease;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question span {
    color: #fa9805;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #fa9805;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
    font-style: normal;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease,
                padding 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 25px 0 25px;
    transform: translateY(-10px);
    transition: transform 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer-inner {
    padding: 0 25px 25px 25px;
    transform: translateY(0);
}

.faq-answer-inner p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
    animation: fadeInContent 0.5s ease;
}

.faq-answer-inner strong {
    color: #0a0e27;
    font-weight: 700;
}

@keyframes fadeInContent {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .faq-section {
        padding: 60px 30px;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer-inner p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .faq-header {
        margin-bottom: 30px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
        gap: 12px;
    }
    
    .faq-icon {
        font-size: 20px;
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 18px 18px 18px;
    }
    
    .faq-answer-inner p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-title::after {
        width: 50px;
        height: 3px;
        bottom: -6px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 14px 15px;
        gap: 10px;
    }
    
    .faq-icon {
        font-size: 18px;
        width: 28px;
        height: 28px;
        line-height: 28px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 15px 15px 15px;
    }
    
    .faq-answer-inner p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .faq-question {
        font-size: 13px;
        padding: 12px 12px;
    }
    
    .faq-icon {
        font-size: 16px;
        width: 24px;
        height: 24px;
        line-height: 24px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 12px 12px 12px;
    }
    
    .faq-answer-inner p {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* Call to Action Section - dae2eb Background */
.cta-course-section {
    background: #dae2eb;
    padding: 40px 60px;
    position: relative;
}

.cta-course-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.cta-course-wrapper {
    max-width: 950px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-course-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.cta-course-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #fa9805, #fcd34d);
    border-radius: 20px 0 0 20px;
}

.cta-course-header {
    text-align: center;
    margin-bottom: 25px;
}

.cta-course-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.cta-course-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.cta-course-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #fa9805, #fcd34d);
    margin: 12px auto 0;
    border-radius: 2px;
}

.cta-course-content {
    max-width: 100%;
}

.cta-course-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.cta-course-text:last-of-type {
    margin-bottom: 0;
}

.cta-course-text strong {
    color: #0a0e27;
    font-weight: 700;
}

.cta-course-highlight {
    font-size: 17px;
    color: #0a0e27;
    padding: 15px 20px;
    background: rgba(250, 152, 5, 0.05);
    border-radius: 12px;
    border-left: 4px solid #fa9805;
    margin-top: 5px;
}

.cta-course-highlight strong {
    color: #0a0e27;
}

.cta-course-buttons {
    display: flex;
    gap: 18px;
    margin-top: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-course-btn-primary,
.cta-course-btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-course-btn-primary {
    background: linear-gradient(135deg, #fa9805, #e08900);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(250, 152, 5, 0.35);
}

.cta-course-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(250, 152, 5, 0.5);
    color: #ffffff;
}

.cta-course-btn-secondary {
    background: transparent;
    color: #0a0e27;
    border: 2px solid #0a0e27;
}

.cta-course-btn-secondary:hover {
    background: #0a0e27;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .cta-course-section {
        padding: 60px 30px;
    }
    
    .cta-course-wrapper {
        padding: 40px 35px;
        border-radius: 16px;
    }
    
    .cta-course-title {
        font-size: 30px;
    }
    
    .cta-course-text {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 14px;
    }
    
    .cta-course-highlight {
        font-size: 16px;
        padding: 12px 18px;
    }
    
    .cta-course-btn-primary,
    .cta-course-btn-secondary {
        padding: 13px 32px;
        font-size: 15px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .cta-course-section {
        padding: 50px 20px;
    }
    
    .cta-course-wrapper {
        padding: 30px 25px;
        border-radius: 14px;
    }
    
    .cta-course-wrapper::before {
        width: 4px;
    }
    
    .cta-course-title {
        font-size: 26px;
    }
    
    .cta-course-divider {
        width: 50px;
        height: 3px;
        margin-top: 10px;
    }
    
    .cta-course-header {
        margin-bottom: 20px;
    }
    
    .cta-course-text {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 12px;
    }
    
    .cta-course-highlight {
        font-size: 15px;
        padding: 12px 16px;
        margin-top: 0;
    }
    
    .cta-course-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-top: 22px;
    }
    
    .cta-course-btn-primary,
    .cta-course-btn-secondary {
        width: 100%;
        max-width: 350px;
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .cta-course-section {
        padding: 40px 15px;
    }
    
    .cta-course-wrapper {
        padding: 25px 18px;
        border-radius: 12px;
    }
    
    .cta-course-wrapper::before {
        width: 3px;
        border-radius: 12px 0 0 12px;
    }
    
    .cta-course-badge {
        font-size: 12px;
        padding: 4px 16px;
        margin-bottom: 10px;
    }
    
    .cta-course-title {
        font-size: 22px;
    }
    
    .cta-course-divider {
        width: 40px;
        height: 3px;
        margin-top: 8px;
    }
    
    .cta-course-header {
        margin-bottom: 18px;
    }
    
    .cta-course-text {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 10px;
    }
    
    .cta-course-highlight {
        font-size: 14px;
        padding: 10px 14px;
        border-left-width: 3px;
    }
    
    .cta-course-buttons {
        gap: 12px;
        margin-top: 18px;
    }
    
    .cta-course-btn-primary,
    .cta-course-btn-secondary {
        padding: 11px 24px;
        font-size: 14px;
        max-width: 100%;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .cta-course-wrapper {
        padding: 20px 14px;
    }
    
    .cta-course-title {
        font-size: 20px;
    }
    
    .cta-course-text {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .cta-course-highlight {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .cta-course-btn-primary,
    .cta-course-btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Tools & Technologies Covered Section - dae2eb Background */
.tools-section {
    background: #dae2eb;
    padding: 80px 60px;
    position: relative;
}

.tools-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.tools-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.tools-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.tools-header {
    text-align: center;
    margin-bottom: 25px;
}

.tools-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.tools-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.tools-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #4a5568;
    margin: 6px 0 0 0;
    line-height: 1.4;
}

.tools-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.tools-content {
    max-width: 100%;
}

.tools-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.tools-intro:last-of-type {
    margin-bottom: 25px;
}

.tools-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

.tools-list-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.tools-list-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #fa9805;
    border-radius: 2px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.tools-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.tools-item:hover {
    transform: translateY(-4px);
    border-color: #fa9805;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    background: #fffbf5;
}

.tools-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.tools-label {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
}

.tools-outro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.tools-outro strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .tools-section {
        padding: 60px 30px;
    }
    
    .tools-wrapper {
        padding: 40px 35px;
        border-radius: 16px;
    }
    
    .tools-title {
        font-size: 32px;
    }
    
    .tools-subtitle {
        font-size: 18px;
    }
    
    .tools-intro {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 14px;
    }
    
    .tools-intro:last-of-type {
        margin-bottom: 20px;
    }
    
    .tools-list-title {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .tools-item {
        padding: 12px 16px;
    }
    
    .tools-icon {
        font-size: 22px;
    }
    
    .tools-label {
        font-size: 13px;
    }
    
    .tools-outro {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .tools-section {
        padding: 50px 20px;
    }
    
    .tools-wrapper {
        padding: 30px 25px;
        border-radius: 14px;
    }
    
    .tools-title {
        font-size: 28px;
    }
    
    .tools-subtitle {
        font-size: 17px;
        margin-top: 5px;
    }
    
    .tools-divider {
        width: 50px;
        height: 3px;
        margin-top: 10px;
    }
    
    .tools-header {
        margin-bottom: 20px;
    }
    
    .tools-intro {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 12px;
    }
    
    .tools-intro:last-of-type {
        margin-bottom: 18px;
    }
    
    .tools-list-title {
        font-size: 17px;
        margin-bottom: 16px;
        padding-bottom: 10px;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .tools-item {
        padding: 10px 14px;
        border-radius: 10px;
    }
    
    .tools-icon {
        font-size: 20px;
    }
    
    .tools-label {
        font-size: 13px;
    }
    
    .tools-outro {
        font-size: 14px;
        line-height: 1.8;
        padding-top: 16px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .tools-section {
        padding: 40px 15px;
    }
    
    .tools-wrapper {
        padding: 25px 18px;
        border-radius: 12px;
    }
    
    .tools-badge {
        font-size: 11px;
        padding: 4px 14px;
        margin-bottom: 8px;
    }
    
    .tools-title {
        font-size: 24px;
    }
    
    .tools-subtitle {
        font-size: 15px;
    }
    
    .tools-divider {
        width: 40px;
        height: 3px;
        margin-top: 8px;
    }
    
    .tools-header {
        margin-bottom: 18px;
    }
    
    .tools-intro {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 10px;
    }
    
    .tools-intro:last-of-type {
        margin-bottom: 16px;
    }
    
    .tools-list-title {
        font-size: 16px;
        margin-bottom: 14px;
        padding-bottom: 8px;
    }
    
    .tools-list-title::after {
        width: 40px;
        height: 2px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .tools-item {
        padding: 8px 12px;
        border-radius: 8px;
        gap: 10px;
    }
    
    .tools-icon {
        font-size: 18px;
    }
    
    .tools-label {
        font-size: 12px;
    }
    
    .tools-outro {
        font-size: 13px;
        line-height: 1.7;
        padding-top: 14px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .tools-wrapper {
        padding: 20px 14px;
    }
    
    .tools-title {
        font-size: 22px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    
    .tools-item {
        padding: 6px 10px;
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
    
    .tools-icon {
        font-size: 20px;
    }
    
    .tools-label {
        font-size: 11px;
    }
    
    .tools-outro {
        font-size: 12px;
        line-height: 1.6;
    }
}
/* What Makes Us Different Section - dae2eb Background */
.what-makes-different-section {
    background: #dae2eb;
    padding: 80px 60px;
    position: relative;
}

.what-makes-different-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.what-makes-different-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.what-makes-different-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.what-makes-different-header {
    text-align: center;
    margin-bottom: 35px;
}

.what-makes-different-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.what-makes-different-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.what-makes-different-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.what-makes-different-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.what-makes-different-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: #f8f9fa;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.what-makes-different-item:hover {
    transform: translateY(-4px);
    border-color: #fa9805;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    background: #fffbf5;
}

.what-makes-different-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(250, 152, 5, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.what-makes-different-item:hover .what-makes-different-icon-wrapper {
    background: rgba(250, 152, 5, 0.18);
}

.what-makes-different-icon {
    font-size: 22px;
}

.what-makes-different-content {
    flex: 1;
}

.what-makes-different-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 4px 0;
}

.what-makes-different-item-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    text-align: justify;
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .what-makes-different-section {
        padding: 60px 30px;
    }
    
    .what-makes-different-wrapper {
        padding: 40px 35px;
        border-radius: 16px;
    }
    
    .what-makes-different-title {
        font-size: 32px;
    }
    
    .what-makes-different-grid {
        gap: 16px;
    }
    
    .what-makes-different-item {
        padding: 16px 18px;
    }
    
    .what-makes-different-icon-wrapper {
        width: 44px;
        height: 44px;
    }
    
    .what-makes-different-icon {
        font-size: 20px;
    }
    
    .what-makes-different-item-title {
        font-size: 15px;
    }
    
    .what-makes-different-item-text {
        font-size: 13px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .what-makes-different-section {
        padding: 50px 20px;
    }
    
    .what-makes-different-wrapper {
        padding: 30px 25px;
        border-radius: 14px;
    }
    
    .what-makes-different-title {
        font-size: 28px;
    }
    
    .what-makes-different-divider {
        width: 50px;
        height: 3px;
        margin-top: 10px;
    }
    
    .what-makes-different-header {
        margin-bottom: 25px;
    }
    
    .what-makes-different-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .what-makes-different-item {
        padding: 14px 16px;
        border-radius: 12px;
    }
    
    .what-makes-different-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .what-makes-different-icon {
        font-size: 18px;
    }
    
    .what-makes-different-item-title {
        font-size: 14px;
    }
    
    .what-makes-different-item-text {
        font-size: 13px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .what-makes-different-section {
        padding: 40px 15px;
    }
    
    .what-makes-different-wrapper {
        padding: 25px 18px;
        border-radius: 12px;
    }
    
    .what-makes-different-badge {
        font-size: 11px;
        padding: 4px 14px;
        margin-bottom: 8px;
    }
    
    .what-makes-different-title {
        font-size: 24px;
    }
    
    .what-makes-different-divider {
        width: 40px;
        height: 3px;
        margin-top: 8px;
    }
    
    .what-makes-different-header {
        margin-bottom: 20px;
    }
    
    .what-makes-different-grid {
        gap: 12px;
    }
    
    .what-makes-different-item {
        padding: 12px 14px;
        gap: 14px;
        border-radius: 10px;
    }
    
    .what-makes-different-icon-wrapper {
        width: 36px;
        height: 36px;
    }
    
    .what-makes-different-icon {
        font-size: 16px;
    }
    
    .what-makes-different-item-title {
        font-size: 14px;
    }
    
    .what-makes-different-item-text {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .what-makes-different-wrapper {
        padding: 20px 14px;
    }
    
    .what-makes-different-title {
        font-size: 22px;
    }
    
    .what-makes-different-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 14px 12px;
    }
    
    .what-makes-different-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .what-makes-different-item-text {
        text-align: center;
    }
}
/* Call to Action Section - White Background */
.cta-java-section {
    background: #ffffff;
    padding: 80px 60px;
    position: relative;
}

.cta-java-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.cta-java-wrapper {
    max-width: 950px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px 60px;
    border-radius: 20px;
    border: 1px solid #eef2f7;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-java-wrapper:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-color: #fa9805;
}

.cta-java-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #fa9805, #fcd34d);
    border-radius: 20px 0 0 20px;
}

.cta-java-header {
    text-align: center;
    margin-bottom: 25px;
}

.cta-java-badge {
    display: inline-block;
    background: rgba(250, 152, 5, 0.1);
    color: #fa9805;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(250, 152, 5, 0.15);
    margin-bottom: 12px;
}

.cta-java-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.cta-java-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #fa9805, #fcd34d);
    margin: 12px auto 0;
    border-radius: 2px;
}

.cta-java-content {
    max-width: 100%;
}

.cta-java-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.cta-java-text:last-of-type {
    margin-bottom: 0;
}

.cta-java-text strong {
    color: #0a0e27;
    font-weight: 700;
}

.cta-java-highlight {
    font-size: 17px;
    color: #0a0e27;
    padding: 15px 20px;
    background: rgba(250, 152, 5, 0.05);
    border-radius: 12px;
    border-left: 4px solid #fa9805;
    margin-top: 5px;
}

.cta-java-highlight strong {
    color: #0a0e27;
}

.cta-java-buttons {
    display: flex;
    gap: 18px;
    margin-top: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-java-btn-primary,
.cta-java-btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-java-btn-primary {
    background: linear-gradient(135deg, #fa9805, #e08900);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(250, 152, 5, 0.35);
}

.cta-java-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(250, 152, 5, 0.5);
    color: #ffffff;
}

.cta-java-btn-secondary {
    background: transparent;
    color: #0a0e27;
    border: 2px solid #0a0e27;
}

.cta-java-btn-secondary:hover {
    background: #0a0e27;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .cta-java-section {
        padding: 60px 30px;
    }
    
    .cta-java-wrapper {
        padding: 40px 35px;
        border-radius: 16px;
    }
    
    .cta-java-title {
        font-size: 30px;
    }
    
    .cta-java-text {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 14px;
    }
    
    .cta-java-highlight {
        font-size: 16px;
        padding: 12px 18px;
    }
    
    .cta-java-btn-primary,
    .cta-java-btn-secondary {
        padding: 13px 32px;
        font-size: 15px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .cta-java-section {
        padding: 50px 20px;
    }
    
    .cta-java-wrapper {
        padding: 30px 25px;
        border-radius: 14px;
    }
    
    .cta-java-wrapper::before {
        width: 4px;
    }
    
    .cta-java-title {
        font-size: 26px;
    }
    
    .cta-java-divider {
        width: 50px;
        height: 3px;
        margin-top: 10px;
    }
    
    .cta-java-header {
        margin-bottom: 20px;
    }
    
    .cta-java-text {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 12px;
    }
    
    .cta-java-highlight {
        font-size: 15px;
        padding: 12px 16px;
        margin-top: 0;
    }
    
    .cta-java-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-top: 22px;
    }
    
    .cta-java-btn-primary,
    .cta-java-btn-secondary {
        width: 100%;
        max-width: 350px;
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .cta-java-section {
        padding: 40px 15px;
    }
    
    .cta-java-wrapper {
        padding: 25px 18px;
        border-radius: 12px;
    }
    
    .cta-java-wrapper::before {
        width: 3px;
        border-radius: 12px 0 0 12px;
    }
    
    .cta-java-badge {
        font-size: 12px;
        padding: 4px 16px;
        margin-bottom: 10px;
    }
    
    .cta-java-title {
        font-size: 22px;
    }
    
    .cta-java-divider {
        width: 40px;
        height: 3px;
        margin-top: 8px;
    }
    
    .cta-java-header {
        margin-bottom: 18px;
    }
    
    .cta-java-text {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 10px;
    }
    
    .cta-java-highlight {
        font-size: 14px;
        padding: 10px 14px;
        border-left-width: 3px;
    }
    
    .cta-java-buttons {
        gap: 12px;
        margin-top: 18px;
    }
    
    .cta-java-btn-primary,
    .cta-java-btn-secondary {
        padding: 11px 24px;
        font-size: 14px;
        max-width: 100%;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .cta-java-wrapper {
        padding: 20px 14px;
    }
    
    .cta-java-title {
        font-size: 20px;
    }
    
    .cta-java-text {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .cta-java-highlight {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .cta-java-btn-primary,
    .cta-java-btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
}
