/* Section 1: ST Hero Section - White Background */
.st-hero-section {
    background: #ffffff;
    padding: 80px 60px;
    position: relative;
}

.st-hero-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.st-hero-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0 auto;
}

.st-hero-content {
    flex: 1.2;
}

.st-hero-image {
    flex: 1;
}

.st-hero-header {
    margin-bottom: 25px;
}

.st-hero-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;
}

.st-hero-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.st-hero-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin-top: 12px;
    border-radius: 2px;
}

.st-hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: #4a5568;
    margin: 12px 0 0 0;
    line-height: 1.5;
}

.st-hero-divider {
    display: none;
}

.st-hero-text-content {
    margin-top: 5px;
}

.st-hero-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.st-hero-text:last-of-type {
    margin-bottom: 0;
}

.st-hero-text strong {
    color: #0a0e27;
    font-weight: 700;
}

.st-hero-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #eef2f7;
}

.st-hero-stat {
    text-align: center;
    flex: 1;
}

.st-hero-stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #fa9805;
}

.st-hero-stat-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

.st-hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.st-hero-btn-primary,
.st-hero-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;
}

.st-hero-btn-primary {
    background: #fa9805;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(250, 152, 5, 0.3);
}

.st-hero-btn-primary:hover {
    background: #e08900;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(250, 152, 5, 0.4);
    color: #ffffff;
}

.st-hero-btn-secondary {
    background: transparent;
    color: #0a0e27;
    border: 2px solid #0a0e27;
}

.st-hero-btn-secondary:hover {
    background: #0a0e27;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.st-hero-image-wrapper {
    width: 100%;
    height: auto;
}

.st-hero-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;
}

.st-hero-image-wrapper img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Tablet */
@media screen and (max-width: 992px) {
    .st-hero-section {
        padding: 60px 30px;
    }
    .st-hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .st-hero-content {
        order: 2;
    }
    .st-hero-image {
        order: 1;
    }
    .st-hero-title {
        font-size: 32px;
    }
    .st-hero-subtitle {
        font-size: 20px;
    }
    .st-hero-text {
        font-size: 15px;
    }
    .st-hero-stats {
        gap: 20px;
    }
    .st-hero-stat-number {
        font-size: 20px;
    }
    .st-hero-image-wrapper img {
        max-width: 400px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .st-hero-section {
        padding: 50px 20px;
    }
    .st-hero-title {
        font-size: 28px;
    }
    .st-hero-subtitle {
        font-size: 18px;
    }
    .st-hero-text {
        font-size: 14px;
    }
    .st-hero-stats {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }
    .st-hero-stat {
        text-align: center;
    }
    .st-hero-stat-number {
        font-size: 20px;
    }
    .st-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .st-hero-btn-primary,
    .st-hero-btn-secondary {
        width: 100%;
        max-width: 350px;
        padding: 12px 30px;
        font-size: 15px;
    }
    .st-hero-image-wrapper img {
        max-width: 100%;
    }
}
/* Section 2: Why Choose a Career in Software Testing? - dae2eb Background */
.st-why-section {
    background: #dae2eb;
    padding: 80px 60px;
    position: relative;
}

.st-why-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.st-why-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;
}

.st-why-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.st-why-header {
    text-align: center;
    margin-bottom: 25px;
}

.st-why-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;
}

.st-why-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.st-why-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.st-why-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 20px;
}

.st-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.st-why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.st-why-item:hover {
    border-color: #fa9805;
    background: #fffbf5;
    transform: translateX(3px);
}

.st-why-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.st-why-label {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
}

.st-why-trust {
    margin: 20px 0;
}

.st-why-trust h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin-bottom: 15px;
}

.st-why-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.st-why-trust-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.st-why-trust-item:hover {
    border-color: #fa9805;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.st-why-trust-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #fa9805;
}

.st-why-trust-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0a0e27;
    margin-top: 2px;
}

.st-why-trust-desc {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
    text-align: justify;
}

.st-why-highlight {
    background: rgba(250, 152, 5, 0.05);
    padding: 20px 25px;
    border-radius: 14px;
    border-left: 4px solid #fa9805;
    margin-top: 20px;
}

.st-why-highlight h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 10px 0;
}

.st-why-highlight p {
    font-size: 15px;
    line-height: 1.8;
    color: #1f2937;
    margin: 0;
}

.st-why-highlight strong {
    color: #0a0e27;
}

/* Tablet */
@media screen and (max-width: 992px) {
    .st-why-section {
        padding: 60px 30px;
    }
    .st-why-wrapper {
        padding: 40px 35px;
    }
    .st-why-title {
        font-size: 30px;
    }
    .st-why-text {
        font-size: 15px;
    }
    .st-why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .st-why-trust-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .st-why-section {
        padding: 50px 20px;
    }
    .st-why-wrapper {
        padding: 30px 25px;
    }
    .st-why-title {
        font-size: 28px;
    }
    .st-why-text {
        font-size: 14px;
    }
    .st-why-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .st-why-item {
        padding: 10px 14px;
    }
    .st-why-label {
        font-size: 14px;
    }
    .st-why-trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .st-why-trust-item {
        padding: 15px;
    }
    .st-why-trust-number {
        font-size: 24px;
    }
    .st-why-highlight {
        padding: 16px 18px;
    }
    .st-why-highlight h4 {
        font-size: 16px;
    }
    .st-why-highlight p {
        font-size: 14px;
    }
}
/* Section 3: Why Choose Our Software Testing Course? - White Background */
.st-choose-section {
    background: #ffffff;
    padding: 80px 60px;
    position: relative;
}

.st-choose-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.st-choose-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.st-choose-header {
    text-align: center;
    margin-bottom: 25px;
}

.st-choose-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;
}

.st-choose-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.st-choose-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #4a5568;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.st-choose-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.st-choose-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.st-choose-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

.st-choose-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0 30px;
}

.st-choose-stat {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.st-choose-stat:hover {
    border-color: #fa9805;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.st-choose-stat-number {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #fa9805;
}

.st-choose-stat-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #0a0e27;
    margin-top: 2px;
}

.st-choose-stat-desc {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
    text-align: justify;
}

.st-choose-subtitle-two {
    font-size: 20px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin: 25px 0 20px;
    position: relative;
    padding-bottom: 12px;
}

.st-choose-subtitle-two::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #fa9805;
    border-radius: 2px;
}

.st-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 25px;
}

.st-choose-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;
}

.st-choose-item:hover {
    transform: translateY(-3px);
    border-color: #fa9805;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background: #fffbf5;
}

.st-choose-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.st-choose-item-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 2px;
}

.st-choose-item-text {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #4a5568;
    line-height: 1.5;
}

.st-choose-highlight {
    background: rgba(250, 152, 5, 0.05);
    padding: 25px 30px;
    border-radius: 14px;
    border-left: 4px solid #fa9805;
    margin: 20px 0;
}

.st-choose-highlight h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 10px 0;
}

.st-choose-highlight p {
    font-size: 15px;
    line-height: 1.8;
    color: #1f2937;
    margin: 0 0 10px 0;
}

.st-choose-highlight p:last-child {
    margin-bottom: 0;
}

.st-choose-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
    margin: 10px 0 15px;
}

.st-choose-highlight-item {
    font-size: 14px;
    line-height: 1.6;
    color: #1f2937;
}

.st-choose-features {
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    margin: 20px 0;
}

.st-choose-features h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin: 0 0 15px 0;
}

.st-choose-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.st-choose-feature-item {
    font-size: 14px;
    line-height: 1.7;
    color: #1f2937;
}

.st-choose-outro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.st-choose-outro strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet */
@media screen and (max-width: 992px) {
    .st-choose-section {
        padding: 60px 30px;
    }
    .st-choose-title {
        font-size: 32px;
    }
    .st-choose-subtitle {
        font-size: 18px;
    }
    .st-choose-intro {
        font-size: 15px;
    }
    .st-choose-stats {
        grid-template-columns: 1fr 1fr;
    }
    .st-choose-grid {
        grid-template-columns: 1fr;
    }
    .st-choose-highlight-grid {
        grid-template-columns: 1fr;
    }
    .st-choose-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .st-choose-section {
        padding: 50px 20px;
    }
    .st-choose-title {
        font-size: 28px;
    }
    .st-choose-subtitle {
        font-size: 17px;
    }
    .st-choose-intro {
        font-size: 14px;
    }
    .st-choose-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .st-choose-stat {
        padding: 15px;
    }
    .st-choose-stat-number {
        font-size: 26px;
    }
    .st-choose-subtitle-two {
        font-size: 18px;
    }
    .st-choose-item {
        padding: 12px 14px;
    }
    .st-choose-item-title {
        font-size: 14px;
    }
    .st-choose-item-text {
        font-size: 13px;
    }
    .st-choose-highlight {
        padding: 18px 16px;
    }
    .st-choose-highlight h4 {
        font-size: 16px;
    }
    .st-choose-highlight p {
        font-size: 14px;
    }
    .st-choose-highlight-item {
        font-size: 13px;
    }
    .st-choose-features {
        padding: 18px 16px;
    }
    .st-choose-features h4 {
        font-size: 16px;
    }
    .st-choose-feature-item {
        font-size: 13px;
    }
    .st-choose-outro {
        font-size: 14px;
    }
}
/* Section 4: What You'll Learn - dae2eb Background */
.st-learn-section {
    background: #dae2eb;
    padding: 80px 60px;
    position: relative;
}

.st-learn-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.st-learn-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;
}

.st-learn-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.st-learn-header {
    text-align: center;
    margin-bottom: 25px;
}

.st-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;
}

.st-learn-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.st-learn-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #4a5568;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.st-learn-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.st-learn-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.st-learn-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

.st-learn-module {
    background: #f8f9fa;
    padding: 18px 22px;
    border-radius: 12px;
    margin-bottom: 14px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.st-learn-module:hover {
    border-color: #fa9805;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.st-learn-module-highlight {
    background: rgba(250, 152, 5, 0.05);
    border-left: 4px solid #fa9805;
    border-color: rgba(250, 152, 5, 0.15);
}

.st-learn-module-highlight:hover {
    border-color: #fa9805;
    border-left-color: #fa9805;
}

.st-learn-module-title {
    font-size: 17px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 4px 0;
}

.st-learn-module-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 0 10px 0;
}

.st-learn-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.st-learn-tag {
    background: #ffffff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: #1f2937;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.st-learn-tag:hover {
    border-color: #fa9805;
    background: #fffbf5;
    transform: translateY(-2px);
}

.st-learn-outcome {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.st-learn-outcome-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin-bottom: 18px;
}

.st-learn-outcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.st-learn-outcome-item {
    font-size: 14px;
    line-height: 1.7;
    color: #1f2937;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #fa9805;
}

.st-learn-skills {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.st-learn-skills-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin-bottom: 15px;
}

.st-learn-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.st-learn-skills-item {
    padding: 8px 14px;
    background: #f8f9fa;
    border-radius: 6px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.st-learn-skills-item:hover {
    border-color: #fa9805;
    background: #fffbf5;
}

.st-learn-outro-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.st-learn-outro-text strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet */
@media screen and (max-width: 992px) {
    .st-learn-section {
        padding: 60px 30px;
    }
    .st-learn-wrapper {
        padding: 40px 35px;
    }
    .st-learn-title {
        font-size: 30px;
    }
    .st-learn-subtitle {
        font-size: 18px;
    }
    .st-learn-intro {
        font-size: 15px;
    }
    .st-learn-module {
        padding: 16px 18px;
    }
    .st-learn-module-title {
        font-size: 16px;
    }
    .st-learn-tag {
        font-size: 11px;
        padding: 3px 10px;
    }
    .st-learn-outcome-grid {
        grid-template-columns: 1fr;
    }
    .st-learn-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .st-learn-section {
        padding: 50px 20px;
    }
    .st-learn-wrapper {
        padding: 30px 25px;
    }
    .st-learn-title {
        font-size: 28px;
    }
    .st-learn-subtitle {
        font-size: 17px;
    }
    .st-learn-intro {
        font-size: 14px;
    }
    .st-learn-module {
        padding: 14px 16px;
    }
    .st-learn-module-title {
        font-size: 15px;
    }
    .st-learn-module-desc {
        font-size: 13px;
    }
    .st-learn-tag {
        font-size: 11px;
        padding: 3px 8px;
    }
    .st-learn-outcome-title {
        font-size: 18px;
    }
    .st-learn-outcome-item {
        font-size: 13px;
    }
    .st-learn-skills-title {
        font-size: 18px;
    }
    .st-learn-skills-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    .st-learn-skills-item {
        font-size: 12px;
        padding: 6px 10px;
    }
    .st-learn-outro-text {
        font-size: 14px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .st-learn-skills-grid {
        grid-template-columns: 1fr;
    }
}
/* Section 5: Tools & Technologies You'll Master - White Background */
.st-tools-section {
    background: #ffffff;
    padding: 80px 60px;
    position: relative;
}

.st-tools-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.st-tools-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.st-tools-header {
    text-align: center;
    margin-bottom: 25px;
}

.st-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;
}

.st-tools-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.st-tools-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #4a5568;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.st-tools-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.st-tools-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.st-tools-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

.st-tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.st-tools-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.st-tools-item:hover {
    transform: translateY(-4px);
    border-color: #fa9805;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    background: #fffbf5;
}

.st-tools-icon-wrapper {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.st-tools-item-title {
    font-size: 17px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 6px 0;
}

.st-tools-item-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 0 10px 0;
}

.st-tools-sub-items {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
}

.st-tools-sub-item {
    font-size: 13px;
    color: #1f2937;
    position: relative;
    padding-left: 14px;
}

.st-tools-sub-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fa9805;
    font-weight: 700;
}

.st-tools-highlight {
    background: rgba(250, 152, 5, 0.05);
    padding: 20px 25px;
    border-radius: 14px;
    border-left: 4px solid #fa9805;
    margin: 20px 0;
}

.st-tools-highlight h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 10px 0;
}

.st-tools-highlight p {
    font-size: 15px;
    line-height: 1.8;
    color: #1f2937;
    margin: 0 0 10px 0;
}

.st-tools-highlight p:last-child {
    margin-bottom: 0;
}

.st-tools-summary {
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    margin: 20px 0;
}

.st-tools-summary h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin: 0 0 15px 0;
}

.st-tools-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.st-tools-summary-item {
    padding: 8px 14px;
    background: #ffffff;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.st-tools-summary-item:hover {
    border-color: #fa9805;
    background: #fffbf5;
}

.st-tools-summary-text {
    font-size: 15px;
    line-height: 1.8;
    color: #1f2937;
    margin-top: 15px;
    text-align: center;
}

.st-tools-summary-text strong {
    color: #0a0e27;
}

/* Tablet */
@media screen and (max-width: 992px) {
    .st-tools-section {
        padding: 60px 30px;
    }
    .st-tools-title {
        font-size: 32px;
    }
    .st-tools-subtitle {
        font-size: 18px;
    }
    .st-tools-intro {
        font-size: 15px;
    }
    .st-tools-grid {
        grid-template-columns: 1fr;
    }
    .st-tools-summary-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .st-tools-section {
        padding: 50px 20px;
    }
    .st-tools-title {
        font-size: 28px;
    }
    .st-tools-subtitle {
        font-size: 17px;
    }
    .st-tools-intro {
        font-size: 14px;
    }
    .st-tools-item {
        padding: 16px;
    }
    .st-tools-item-title {
        font-size: 16px;
    }
    .st-tools-item-text {
        font-size: 13px;
    }
    .st-tools-summary-grid {
        grid-template-columns: 1fr 1fr;
    }
    .st-tools-summary-item {
        font-size: 13px;
        padding: 6px 10px;
    }
    .st-tools-summary-text {
        font-size: 14px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .st-tools-summary-grid {
        grid-template-columns: 1fr;
    }
}
/* Section 6: Live Projects You'll Work On - dae2eb Background */
.st-projects-section {
    background: #dae2eb;
    padding: 80px 60px;
    position: relative;
}

.st-projects-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.st-projects-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;
}

.st-projects-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.st-projects-header {
    text-align: center;
    margin-bottom: 25px;
}

.st-projects-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;
}

.st-projects-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.st-projects-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #4a5568;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.st-projects-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.st-projects-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.st-projects-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

.st-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 15px 0;
}

.st-projects-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.st-projects-item:hover {
    transform: translateY(-4px);
    border-color: #fa9805;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    background: #fffbf5;
}

.st-projects-item-highlight {
    background: rgba(250, 152, 5, 0.05);
    border-left: 4px solid #fa9805;
    border-color: rgba(250, 152, 5, 0.15);
}

.st-projects-item-highlight:hover {
    border-color: #fa9805;
    border-left-color: #fa9805;
}

.st-projects-icon-wrapper {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.st-projects-item-title {
    font-size: 17px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 6px 0;
}

.st-projects-item-text {
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 10px 0;
}

.st-projects-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.st-projects-skill {
    background: #ffffff;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: #1f2937;
    border: 1px solid #eef2f7;
}

.st-projects-skill:hover {
    border-color: #fa9805;
    background: #fffbf5;
}

.st-projects-portfolio {
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    margin: 20px 0;
}

.st-projects-portfolio h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 10px 0;
}

.st-projects-portfolio p {
    font-size: 15px;
    line-height: 1.8;
    color: #1f2937;
    margin: 0 0 15px 0;
}

.st-projects-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
}

.st-projects-portfolio-item {
    padding: 8px 14px;
    background: #ffffff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    border: 1px solid #eef2f7;
    text-align: center;
}

.st-projects-benefits {
    background: rgba(250, 152, 5, 0.05);
    padding: 25px 30px;
    border-radius: 14px;
    border-left: 4px solid #fa9805;
    margin: 20px 0;
}

.st-projects-benefits h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 15px 0;
}

.st-projects-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    margin-bottom: 15px;
}

.st-projects-benefit-item {
    font-size: 14px;
    line-height: 1.7;
    color: #1f2937;
}

.st-projects-benefits p {
    font-size: 15px;
    line-height: 1.8;
    color: #1f2937;
    margin: 0;
}

.st-projects-benefits strong {
    color: #0a0e27;
}

/* Tablet */
@media screen and (max-width: 992px) {
    .st-projects-section {
        padding: 60px 30px;
    }
    .st-projects-wrapper {
        padding: 40px 35px;
    }
    .st-projects-title {
        font-size: 30px;
    }
    .st-projects-subtitle {
        font-size: 18px;
    }
    .st-projects-intro {
        font-size: 15px;
    }
    .st-projects-grid {
        grid-template-columns: 1fr 1fr;
    }
    .st-projects-portfolio-grid {
        grid-template-columns: 1fr;
    }
    .st-projects-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .st-projects-section {
        padding: 50px 20px;
    }
    .st-projects-wrapper {
        padding: 30px 25px;
    }
    .st-projects-title {
        font-size: 28px;
    }
    .st-projects-subtitle {
        font-size: 17px;
    }
    .st-projects-intro {
        font-size: 14px;
    }
    .st-projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .st-projects-item {
        padding: 16px;
    }
    .st-projects-item-title {
        font-size: 16px;
    }
    .st-projects-item-text {
        font-size: 13px;
    }
    .st-projects-portfolio {
        padding: 18px 16px;
    }
    .st-projects-portfolio h4 {
        font-size: 16px;
    }
    .st-projects-portfolio-item {
        font-size: 13px;
        padding: 6px 10px;
    }
    .st-projects-benefits {
        padding: 18px 16px;
    }
    .st-projects-benefits h4 {
        font-size: 16px;
    }
    .st-projects-benefit-item {
        font-size: 13px;
    }
    .st-projects-benefits p {
        font-size: 14px;
    }
}
/* Section 7: Career Opportunities - White Background */
.st-career-section {
    background: #ffffff;
    padding: 80px 60px;
    position: relative;
}

.st-career-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.st-career-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.st-career-header {
    text-align: center;
    margin-bottom: 25px;
}

.st-career-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;
}

.st-career-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.st-career-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #4a5568;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.st-career-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.st-career-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.st-career-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

.st-career-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.st-career-subtitle-two {
    font-size: 20px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin: 25px 0 18px;
    position: relative;
    padding-bottom: 12px;
}

.st-career-subtitle-two::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #fa9805;
    border-radius: 2px;
}

.st-career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.st-career-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;
}

.st-career-item:hover {
    transform: translateY(-3px);
    border-color: #fa9805;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background: #fffbf5;
}

.st-career-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.st-career-item-title {
    font-size: 15px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 4px 0;
}

.st-career-item-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.st-career-industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.st-career-industry-item {
    padding: 10px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #eef2f7;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    transition: all 0.3s ease;
}

.st-career-industry-item:hover {
    border-color: #fa9805;
    background: #fffbf5;
}

.st-career-progression {
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    margin: 20px 0;
}

.st-career-progression h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin: 0 0 10px 0;
}

.st-career-progression p {
    font-size: 15px;
    line-height: 1.8;
    color: #1f2937;
    text-align: center;
    margin: 0 0 15px 0;
}

.st-career-progression-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.st-career-progression-step {
    padding: 10px 25px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #eef2f7;
    font-size: 15px;
    font-weight: 600;
    color: #0a0e27;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.st-career-progression-arrow {
    font-size: 20px;
    color: #fa9805;
    font-weight: 700;
}

.st-career-skills {
    background: rgba(250, 152, 5, 0.05);
    padding: 25px 30px;
    border-radius: 14px;
    border-left: 4px solid #fa9805;
    margin: 20px 0;
}

.st-career-skills h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 10px 0;
}

.st-career-skills p {
    font-size: 15px;
    line-height: 1.8;
    color: #1f2937;
    margin: 0 0 15px 0;
}

.st-career-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.st-career-skill-item {
    padding: 8px 14px;
    background: #ffffff;
    border-radius: 6px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.st-career-skill-item:hover {
    border-color: #fa9805;
    background: #fffbf5;
}

.st-career-highlight {
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    margin: 20px 0;
}

.st-career-highlight h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 10px 0;
}

.st-career-highlight p {
    font-size: 15px;
    line-height: 1.8;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.st-career-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
    margin-bottom: 12px;
}

.st-career-highlight-item {
    font-size: 14px;
    line-height: 1.7;
    color: #1f2937;
}

.st-career-outro-wrapper {
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.st-career-outro-wrapper h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin: 0 0 10px 0;
}

.st-career-outro-wrapper p {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 12px;
}

.st-career-outro-wrapper p:last-child {
    margin-bottom: 0;
}

.st-career-outro-wrapper strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet */
@media screen and (max-width: 992px) {
    .st-career-section {
        padding: 60px 30px;
    }
    .st-career-title {
        font-size: 32px;
    }
    .st-career-subtitle {
        font-size: 18px;
    }
    .st-career-intro {
        font-size: 15px;
    }
    .st-career-grid {
        grid-template-columns: 1fr;
    }
    .st-career-industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .st-career-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .st-career-highlight-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .st-career-section {
        padding: 50px 20px;
    }
    .st-career-title {
        font-size: 28px;
    }
    .st-career-subtitle {
        font-size: 17px;
    }
    .st-career-intro {
        font-size: 14px;
    }
    .st-career-text {
        font-size: 14px;
    }
    .st-career-subtitle-two {
        font-size: 18px;
    }
    .st-career-item {
        padding: 14px 14px;
    }
    .st-career-item-title {
        font-size: 14px;
    }
    .st-career-item-text {
        font-size: 13px;
    }
    .st-career-industry-grid {
        grid-template-columns: 1fr 1fr;
    }
    .st-career-industry-item {
        font-size: 13px;
        padding: 8px 12px;
    }
    .st-career-progression {
        padding: 18px 16px;
    }
    .st-career-progression-step {
        font-size: 14px;
        padding: 8px 16px;
    }
    .st-career-skills {
        padding: 18px 16px;
    }
    .st-career-skills-grid {
        grid-template-columns: 1fr 1fr;
    }
    .st-career-skill-item {
        font-size: 12px;
        padding: 6px 10px;
    }
    .st-career-highlight {
        padding: 18px 16px;
    }
    .st-career-highlight h4 {
        font-size: 16px;
    }
    .st-career-highlight-item {
        font-size: 13px;
    }
    .st-career-outro-wrapper h4 {
        font-size: 18px;
    }
    .st-career-outro-wrapper p {
        font-size: 14px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .st-career-industry-grid {
        grid-template-columns: 1fr;
    }
    .st-career-skills-grid {
        grid-template-columns: 1fr;
    }
}
/* Section 8: Who Can Join This Course? - dae2eb Background */
.st-who-section {
    background: #dae2eb;
    padding: 80px 60px;
    position: relative;
}

.st-who-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.st-who-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;
}

.st-who-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.st-who-header {
    text-align: center;
    margin-bottom: 25px;
}

.st-who-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;
}

.st-who-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.st-who-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #4a5568;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.st-who-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.st-who-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.st-who-intro strong {
    color: #0a0e27;
    font-weight: 700;
}

.st-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 15px 0;
}

.st-who-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.st-who-item:hover {
    transform: translateY(-4px);
    border-color: #fa9805;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    background: #fffbf5;
}

.st-who-icon-wrapper {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.st-who-item-title {
    font-size: 17px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 6px 0;
}

.st-who-item-text {
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 8px 0;
}

.st-who-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
}

.st-who-benefit {
    font-size: 13px;
    color: #1f2937;
    background: #ffffff;
    padding: 2px 12px;
    border-radius: 50px;
    border: 1px solid #eef2f7;
}

.st-who-requirements {
    background: rgba(250, 152, 5, 0.05);
    padding: 25px 30px;
    border-radius: 14px;
    border-left: 4px solid #fa9805;
    margin: 20px 0;
}

.st-who-requirements h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 10px 0;
}

.st-who-requirements p {
    font-size: 15px;
    line-height: 1.8;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.st-who-requirements p:last-child {
    margin-bottom: 0;
}

.st-who-requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
    margin-bottom: 12px;
}

.st-who-requirement-item {
    padding: 8px 14px;
    background: #ffffff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    border: 1px solid #eef2f7;
    text-align: center;
}

.st-who-benefits-section {
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    margin: 20px 0;
}

.st-who-benefits-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 10px 0;
}

.st-who-benefits-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.st-who-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
    margin-bottom: 12px;
}

.st-who-benefit-item {
    font-size: 14px;
    line-height: 1.7;
    color: #1f2937;
}

.st-who-closing {
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.st-who-closing h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0a0e27;
    text-align: center;
    margin: 0 0 10px 0;
}

.st-who-closing p {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 12px;
}

.st-who-closing p:last-child {
    margin-bottom: 0;
}

.st-who-closing strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet */
@media screen and (max-width: 992px) {
    .st-who-section {
        padding: 60px 30px;
    }
    .st-who-wrapper {
        padding: 40px 35px;
    }
    .st-who-title {
        font-size: 30px;
    }
    .st-who-subtitle {
        font-size: 18px;
    }
    .st-who-intro {
        font-size: 15px;
    }
    .st-who-grid {
        grid-template-columns: 1fr;
    }
    .st-who-requirements-grid {
        grid-template-columns: 1fr 1fr;
    }
    .st-who-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .st-who-section {
        padding: 50px 20px;
    }
    .st-who-wrapper {
        padding: 30px 25px;
    }
    .st-who-title {
        font-size: 28px;
    }
    .st-who-subtitle {
        font-size: 17px;
    }
    .st-who-intro {
        font-size: 14px;
    }
    .st-who-item {
        padding: 16px;
    }
    .st-who-item-title {
        font-size: 16px;
    }
    .st-who-item-text {
        font-size: 13px;
    }
    .st-who-benefit {
        font-size: 12px;
        padding: 2px 8px;
    }
    .st-who-requirements {
        padding: 16px 18px;
    }
    .st-who-requirements h4 {
        font-size: 16px;
    }
    .st-who-requirements p {
        font-size: 14px;
    }
    .st-who-requirements-grid {
        grid-template-columns: 1fr 1fr;
    }
    .st-who-requirement-item {
        font-size: 13px;
        padding: 6px 10px;
    }
    .st-who-benefits-section {
        padding: 18px 16px;
    }
    .st-who-benefits-section h4 {
        font-size: 16px;
    }
    .st-who-benefits-section p {
        font-size: 14px;
    }
    .st-who-benefit-item {
        font-size: 13px;
    }
    .st-who-closing h4 {
        font-size: 18px;
    }
    .st-who-closing p {
        font-size: 14px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .st-who-requirements-grid {
        grid-template-columns: 1fr;
    }
}
/* Section 9: FAQs - White Background */
.st-faq-section {
    background: #ffffff;
    padding: 80px 60px;
    position: relative;
}

.st-faq-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.st-faq-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.st-faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.st-faq-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;
}

.st-faq-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.st-faq-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #4a5568;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.st-faq-divider {
    width: 60px;
    height: 4px;
    background: #fa9805;
    margin: 12px auto 0;
    border-radius: 2px;
}

.st-faq-list {
    max-width: 100%;
}

.st-faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #eef2f7;
    overflow: hidden;
    transition: all 0.3s ease;
}

.st-faq-item:hover {
    border-color: #fa9805;
}

.st-faq-item.active {
    border-color: #fa9805;
    box-shadow: 0 4px 20px rgba(250, 152, 5, 0.1);
}

.st-faq-question {
    width: 100%;
    padding: 18px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #0a0e27;
    text-align: left;
    transition: all 0.3s ease;
    gap: 15px;
}

.st-faq-question span {
    flex: 1;
    line-height: 1.5;
}

.st-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;
    background: rgba(250, 152, 5, 0.1);
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.st-faq-item.active .st-faq-icon {
    transform: rotate(135deg);
    background: rgba(250, 152, 5, 0.2);
}

.st-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

.st-faq-item.active .st-faq-answer {
    max-height: 400px;
    opacity: 1;
}

.st-faq-answer-inner {
    padding: 0 25px 25px 25px;
}

.st-faq-answer-inner p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
}

.st-faq-answer-inner strong {
    color: #0a0e27;
    font-weight: 700;
}

/* Tablet */
@media screen and (max-width: 992px) {
    .st-faq-section {
        padding: 60px 30px;
    }
    .st-faq-title {
        font-size: 32px;
    }
    .st-faq-subtitle {
        font-size: 18px;
    }
    .st-faq-question {
        font-size: 15px;
        padding: 16px 20px;
    }
    .st-faq-answer-inner p {
        font-size: 15px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .st-faq-section {
        padding: 50px 20px;
    }
    .st-faq-title {
        font-size: 28px;
    }
    .st-faq-subtitle {
        font-size: 17px;
    }
    .st-faq-question {
        font-size: 14px;
        padding: 14px 18px;
    }
    .st-faq-icon {
        font-size: 20px;
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
    .st-faq-answer-inner {
        padding: 0 18px 18px 18px;
    }
    .st-faq-answer-inner p {
        font-size: 14px;
    }
}
/* Section 10: Start Your Career in Software Testing - dae2eb Background */
.st-cta-section {
    background: #dae2eb;
    padding: 80px 60px;
    position: relative;
}

.st-cta-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.st-cta-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;
}

.st-cta-wrapper:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.st-cta-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;
}

.st-cta-header {
    text-align: center;
    margin-bottom: 25px;
}

.st-cta-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;
}

.st-cta-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0e27;
    margin: 0;
    line-height: 1.2;
}

.st-cta-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #fa9805, #fcd34d);
    margin: 12px auto 0;
    border-radius: 2px;
}

.st-cta-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    text-align: justify;
    margin-bottom: 16px;
}

.st-cta-text strong {
    color: #0a0e27;
    font-weight: 700;
}

.st-cta-highlight {
    background: rgba(250, 152, 5, 0.05);
    padding: 20px 25px;
    border-radius: 14px;
    border-left: 4px solid #fa9805;
    margin: 20px 0;
}

.st-cta-highlight h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    margin: 0 0 10px 0;
}

.st-cta-highlight p {
    font-size: 15px;
    line-height: 1.8;
    color: #1f2937;
    margin: 0;
}

.st-cta-highlight strong {
    color: #0a0e27;
}

.st-cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 30px;
    margin: 20px 0 25px;
}

.st-cta-feature-item {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
}

.st-cta-buttons {
    display: flex;
    gap: 18px;
    margin-top: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.st-cta-btn-primary,
.st-cta-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;
}

.st-cta-btn-primary {
    background: linear-gradient(135deg, #fa9805, #e08900);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(250, 152, 5, 0.35);
}

.st-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(250, 152, 5, 0.5);
    color: #ffffff;
}

.st-cta-btn-secondary {
    background: transparent;
    color: #0a0e27;
    border: 2px solid #0a0e27;
}

.st-cta-btn-secondary:hover {
    background: #0a0e27;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Tablet */
@media screen and (max-width: 992px) {
    .st-cta-section {
        padding: 60px 30px;
    }
    .st-cta-wrapper {
        padding: 40px 35px;
    }
    .st-cta-title {
        font-size: 30px;
    }
    .st-cta-text {
        font-size: 15px;
    }
    .st-cta-highlight {
        padding: 16px 20px;
    }
    .st-cta-highlight h4 {
        font-size: 17px;
    }
    .st-cta-highlight p {
        font-size: 14px;
    }
    .st-cta-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .st-cta-section {
        padding: 50px 20px;
    }
    .st-cta-wrapper {
        padding: 30px 25px;
    }
    .st-cta-wrapper::before {
        width: 4px;
    }
    .st-cta-title {
        font-size: 26px;
    }
    .st-cta-text {
        font-size: 14px;
    }
    .st-cta-highlight {
        padding: 16px 18px;
    }
    .st-cta-highlight h4 {
        font-size: 16px;
    }
    .st-cta-highlight p {
        font-size: 14px;
    }
    .st-cta-features {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .st-cta-feature-item {
        font-size: 14px;
    }
    .st-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .st-cta-btn-primary,
    .st-cta-btn-secondary {
        width: 100%;
        max-width: 350px;
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .st-cta-wrapper {
        padding: 25px 18px;
    }
    .st-cta-title {
        font-size: 22px;
    }
    .st-cta-feature-item {
        font-size: 13px;
    }
    .st-cta-highlight {
        padding: 14px 16px;
    }
    .st-cta-highlight h4 {
        font-size: 15px;
    }
    .st-cta-highlight p {
        font-size: 13px;
    }
}




/* 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;
    text-align: justify;
    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;
    }
}

