:root {
    --bps-primary: #0090b9;
    --bps-primary-dark: #006d8a;
    --bps-secondary: #fab549;
    --bps-light: #f8f9fa;
    --bps-ivory: #faf6e4;
    --bps-white: #ffffff;
    --bps-text-dark: #212529;
    --bps-text-muted: #6c757d;
    --bps-success: #28a745;
    --bps-gradient: linear-gradient(135deg, var(--bps-primary) 0%, var(--bps-primary-dark) 100%);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: var(--bps-text-dark);
    background-color: var(--bps-white);
    line-height: 1.8;
    padding-top: 80px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--bps-text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 2.2rem; font-weight: 800; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.3rem; }

/* Section Utilities */
.section-bg-white { background-color: var(--bps-white); }
.section-bg-ivory { background-color: var(--bps-ivory); }

.section-heading {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--bps-text-dark);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--bps-text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Navigation */
#mainNav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 144, 185, 0.1);
}

#mainNav .navbar-brand img {
    height: 40px;
    transition: height 0.3s ease;
}

#mainNav .navbar-nav .nav-link {
    color: var(--bps-text-dark);
    font-weight: 600;
    padding: 0.9rem 1.3rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    position: relative;
    border-radius: 25px;
}

#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active {
    color: var(--bps-primary);
    background-color: rgba(0, 144, 185, 0.08);
    transform: translateY(-1px);
}

#mainNav .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--bps-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#mainNav .navbar-nav .nav-link:hover::after,
#mainNav .navbar-nav .nav-link.active::after {
    width: 20px;
}

/* Hero Section */
.hero-section {
    background: var(--bps-gradient);
    color: var(--bps-white);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--bps-secondary);
    margin-bottom: 1rem;
    display: block;
}

.feature-item h5 {
    color: var(--bps-white);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Button Styles */
.btn {
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--bps-secondary), #ffc76b);
    color: var(--bps-text-dark);
    box-shadow: 0 6px 20px rgba(250, 181, 73, 0.4);
    border: 2px solid transparent;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #e09030, var(--bps-secondary));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(250, 181, 73, 0.6);
    color: var(--bps-text-dark);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-lg {
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
}

/* About Section */
.about-section {
    padding: 120px 0;
}

.overview-card {
    background: var(--bps-white);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 144, 185, 0.1);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bps-gradient);
}

.overview-card h3 {
    color: var(--bps-primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.company-info-table {
    width: 100%;
}

.company-info-table td {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
}

.info-label {
    font-weight: 600;
    color: var(--bps-primary);
    width: 120px;
    vertical-align: top;
}

.company-logo {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.company-logo img {
    max-height: 120px;
    width: auto;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
}

.philosophy-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-card {
    background: var(--bps-white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.philosophy-icon {
    margin-bottom: 1.5rem;
}

.philosophy-character {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    border: 3px solid var(--bps-primary);
    color: var(--bps-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.philosophy-card h4 {
    color: var(--bps-primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.english-text {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--bps-text-muted);
}

.philosophy-card p {
    color: var(--bps-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Programs Section */
.programs-section {
    padding: 80px 0;
}

.program-card {
    background: var(--bps-white);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    border-left: 5px solid var(--bps-primary);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.program-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.program-icon i {
    font-size: 2.5rem;
    color: var(--bps-primary);
    background: linear-gradient(135deg, var(--bps-ivory), #f0f8ff);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

.program-card h4 {
    color: var(--bps-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.program-card p {
    color: var(--bps-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: var(--bps-primary);
    color: var(--bps-white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Strengths Section */
.strengths-section {
    padding: 80px 0;
}

.strength-card {
    background: var(--bps-white);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.strength-icon {
    margin-bottom: 1.5rem;
}

.strength-icon i {
    font-size: 2.5rem;
    color: var(--bps-white);
    background: var(--bps-gradient);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 144, 185, 0.3);
}

.strength-card h4 {
    color: var(--bps-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.strength-card p {
    color: var(--bps-text-muted);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
}

.contact-benefits {
    margin-bottom: 4rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--bps-primary);
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h5 {
    color: var(--bps-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: var(--bps-text-muted);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--bps-light);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bps-gradient);
}

.hubspot-form-wrapper {
    background: var(--bps-white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 144, 185, 0.1);
}

/* Footer */
.footer-section {
    background: var(--bps-gradient);
    color: var(--bps-white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--bps-secondary);
    text-decoration: none;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.animate-on-scroll.fadeInUp {
    transform: translateY(30px);
}

.animate-on-scroll.fadeInLeft {
    transform: translateX(-30px);
}

.animate-on-scroll.fadeInRight {
    transform: translateX(30px);
}

.animate-on-scroll.pulse {
    transform: scale(1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.animate-on-scroll.is-visible.pulse {
    animation: pulseAnimation 1.5s ease-out;
}

@keyframes pulseAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .hero-title { font-size: 3.5rem; }
    .section-heading { font-size: 2.5rem; }
    .hero-section { padding: 120px 0 80px; }
}

@media (max-width: 991.98px) {
    body { padding-top: 80px; }
    .hero-section {
        padding: 100px 0 80px;
        min-height: 90vh;
    }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.3rem; }
    .section-heading { font-size: 2.2rem; }
    .overview-card { padding: 3rem 2rem; }
    .philosophy-card { padding: 2.5rem 2rem; }
    .program-card { padding: 2.5rem; }
    .strength-card { padding: 2.5rem; }
    .contact-form-wrapper { padding: 2.5rem; }

    /* Improve section spacing */
    .about-section,
    .philosophy-section,
    .problems-section,
    .statistics-section,
    .solutions-section,
    .career-canvas-women,
    .course-flow-section,
    .course-details-section,
    .strengths-section,
    .contact-section {
        padding: 100px 0;
    }
}

@media (max-width: 767.98px) {
    body { padding-top: 70px; }
    .hero-section {
        padding: 80px 0 60px;
        min-height: 80vh;
    }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    .section-heading { font-size: 2rem; }
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    /* Compress section spacing on mobile */
    .about-section,
    .philosophy-section,
    .problems-section,
    .statistics-section,
    .solutions-section,
    .career-canvas-women,
    .course-flow-section,
    .course-details-section,
    .strengths-section,
    .contact-section {
        padding: 80px 0;
    }

    .overview-card { padding: 2rem 1.5rem; }
    .philosophy-card { padding: 2rem 1.5rem; margin-bottom: 2rem; }
    .program-card { padding: 2rem 1.5rem; margin-bottom: 2rem; }
    .strength-card { padding: 2rem 1.5rem; margin-bottom: 2rem; }
    .contact-form-wrapper { padding: 2rem 1.5rem; }

    .company-info-table td {
        display: block;
        width: 100%;
        padding: 0.8rem 0;
    }

    .info-label {
        width: 100%;
        font-weight: 700;
        color: var(--bps-primary);
    }

    .btn {
        width: 100%;
        margin-bottom: 1.5rem;
        padding: 1.2rem 2rem;
    }

    .hero-badge .badge {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-heading { font-size: 1.8rem; }

    .overview-card { padding: 1.5rem; }
    .philosophy-card { padding: 1.5rem; }
    .program-card { padding: 1.5rem; }
    .strength-card { padding: 1.5rem; }
    .contact-form-wrapper { padding: 1.5rem; }
    .hubspot-form-wrapper { padding: 1.5rem; }

    .btn-lg {
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }
}

/* Remove duplicate @media (max-width: 575.98px) rule as it's already covered above */

/* Career Canvas Specific Styles */

/* Hero Badge */
.hero-badge {
    margin-bottom: 2.5rem;
}

.hero-badge .badge {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    background-color: var(--bps-secondary) !important;
    color: var(--bps-text-dark) !important;
    box-shadow: 0 4px 15px rgba(250, 181, 73, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Problem Box */
.hero-problem {
    margin-bottom: 4rem;
}

.problem-box {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.problem-box h3 {
    color: var(--bps-white);
    font-size: 1.5rem;
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 700;
}

/* Problems Section */
.problems-section {
    padding: 120px 0;
}

.problems-section .problem-card {
    background: var(--bps-white);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--bps-primary);
}

.problems-section .problem-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.problems-section .problem-icon i {
    font-size: 3rem;
    color: var(--bps-primary);
}

.problems-section .problem-card h4 {
    color: var(--bps-primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.problem-list {
    list-style: none;
    padding-left: 0;
}

.problem-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.problem-list li i {
    margin-right: 0.8rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.problem-list li i.fa-check {
    color: var(--bps-success);
}

.problem-list li i.fa-times {
    color: #dc3545;
}

.problem-list li i.fa-question {
    color: #ffc107;
}

/* Statistics Section */
.statistics-section {
    background: var(--bps-ivory);
    padding: 120px 0;
}

.statistics-chart {
    margin: 3rem 0;
}

.chart-container {
    text-align: center;
    background: var(--bps-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.statistics-chart-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.stat-card {
    background: var(--bps-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bps-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--bps-text-muted);
    margin-bottom: 1rem;
}

.stat-trend {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-trend.positive {
    background: #d4edda;
    color: #155724;
}

.stat-trend.negative {
    background: #f8d7da;
    color: #721c24;
}

.statistics-message {
    margin-top: 3rem;
}

.message-box {
    background: var(--bps-white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--bps-secondary);
}

.message-box h4 {
    color: var(--bps-text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

.highlight {
    color: var(--bps-primary);
    font-weight: 700;
}

.data-sources {
    margin-top: 2rem;
    text-align: left;
}

.data-sources h5 {
    color: var(--bps-primary);
    margin-bottom: 1rem;
}

.source-list {
    list-style: none;
    padding-left: 0;
}

.source-list li {
    font-size: 0.9rem;
    color: var(--bps-text-muted);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.source-list li:before {
    content: "•";
    color: var(--bps-primary);
    position: absolute;
    left: 0;
}

/* Solutions Section */
.solutions-section {
    padding: 120px 0;
}

.solution-card {
    background: var(--bps-white);
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--bps-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card.women {
    border-left: 5px solid #e91e63;
}

.solution-card.senior {
    border-left: 5px solid #2196f3;
}

.solution-header h3 {
    color: var(--bps-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.solution-tagline {
    font-style: italic;
    color: var(--bps-text-muted);
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding-left: 0;
}

.solution-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.solution-features li i {
    margin-right: 0.8rem;
    margin-top: 0.3rem;
    color: var(--bps-primary);
}

.solution-mission {
    margin-top: 3rem;
}

.mission-box {
    background: var(--bps-gradient);
    color: var(--bps-white);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
}

.mission-box h4 {
    color: var(--bps-white);
    font-size: 1.4rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Career Canvas for Women Section */
.career-canvas-women {
    padding: 120px 0;
}

.career-canvas-women .women-problems {
    margin-bottom: 3rem;
}

.concern-list {
    list-style: none;
    padding-left: 0;
}

.concern-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.concern-list li i {
    margin-right: 0.8rem;
    margin-top: 0.3rem;
    color: var(--bps-primary);
}

.message-highlight {
    background: var(--bps-gradient);
    color: var(--bps-white);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
}

.message-highlight h3 {
    color: var(--bps-white);
    font-size: 1.4rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Course Flow Section */
.course-flow-section {
    padding: 120px 0;
}

.course-concept {
    text-align: center;
}

.concept-box {
    background: var(--bps-ivory);
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid var(--bps-primary);
}

.concept-box h4 {
    color: var(--bps-primary);
    margin-bottom: 1rem;
}

.course-flow {
    margin-bottom: 3rem;
}

.flow-image-container {
    text-align: center;
    background: var(--bps-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.flow-chart-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.flow-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.step-icon {
    background: var(--bps-gradient);
    color: var(--bps-white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.flow-step h5 {
    color: var(--bps-primary);
    margin-bottom: 0.5rem;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--bps-primary);
    flex-shrink: 0;
}

.course-restart-program {
    background: var(--bps-white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.program-header h3 {
    color: var(--bps-primary);
    margin-bottom: 0.5rem;
}

.program-note {
    font-size: 0.9rem;
    color: var(--bps-text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.program-items {
    list-style: none;
    padding-left: 0;
}

.program-items li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.program-items li i {
    margin-right: 0.8rem;
    margin-top: 0.3rem;
    color: var(--bps-success);
}

.courses-title {
    text-align: center;
    color: var(--bps-primary);
    margin-bottom: 2rem;
}

.course-overview-card {
    background: var(--bps-white);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.course-overview-card:hover {
    transform: translateY(-3px);
}

.course-overview-card.course-1 {
    border-top: 4px solid #ff9800;
}

.course-overview-card.course-2 {
    border-top: 4px solid #4caf50;
}

.course-overview-card.course-3 {
    border-top: 4px solid #2196f3;
}

.course-overview-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Course Details Section */
.course-details-section {
    padding: 120px 0;
}

.course-detail-card {
    background: var(--bps-white);
    border-radius: 20px;
    margin-bottom: 4rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.course-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.course-header {
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
}

.course-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.course-1-header {
    background: linear-gradient(135deg, #ff9800, #ffa726);
    color: var(--bps-white);
}

.course-2-header {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: var(--bps-white);
}

.course-3-header {
    background: linear-gradient(135deg, #2196f3, #42a5f5);
    color: var(--bps-white);
}

.course-number {
    font-size: 3rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.course-title h3 {
    color: inherit;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.course-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.course-content {
    padding: 3.5rem 3rem;
}

.course-feature {
    margin-bottom: 2rem;
}

.course-feature h4 {
    color: var(--bps-primary);
    margin-bottom: 1rem;
}

.feature-tags {
    margin-top: 1rem;
}

.feature-tags .tag {
    background: var(--bps-primary);
    color: var(--bps-white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.course-curriculum h4 {
    color: var(--bps-primary);
    margin-bottom: 1rem;
}

.curriculum-list {
    list-style: none;
    padding-left: 0;
}

.curriculum-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.curriculum-list li i {
    margin-right: 0.8rem;
    margin-top: 0.3rem;
    color: var(--bps-primary);
    width: 16px;
}

.sub-course {
    background: var(--bps-light);
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    margin-bottom: 1rem;
}

.sub-course h4 {
    color: var(--bps-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sub-course-description {
    font-size: 0.95rem;
    color: var(--bps-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sub-curriculum {
    list-style: none;
    padding-left: 0;
}

.sub-curriculum li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
}

.sub-curriculum li i {
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    color: var(--bps-primary);
    width: 14px;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 991.98px) {
    .flow-container {
        flex-direction: column;
        align-items: center;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .course-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .course-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-badge .badge {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }

    .problem-box {
        padding: 1.5rem;
    }

    .problem-box h3 {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .message-box {
        padding: 1.5rem;
    }

    .mission-box {
        padding: 1.5rem;
    }

    .mission-box h4 {
        font-size: 1.2rem;
    }

    .course-content {
        padding: 1.5rem;
    }

    .course-header {
        padding: 1.5rem;
    }

    .course-title h3 {
        font-size: 1.4rem;
    }

    .chart-container {
        padding: 1rem;
    }

    .flow-image-container {
        padding: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .btn,
    .program-card,
    .strength-card,
    .philosophy-card,
    .solution-card,
    .course-overview-card {
        transition: none;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* Print Styles */
@media print {
    .hero-section {
        background: none !important;
        color: var(--bps-text-dark) !important;
    }

    .hero-title,
    .section-heading {
        color: var(--bps-text-dark) !important;
    }

    .btn {
        display: none;
    }

    .footer-section {
        background: none !important;
        color: var(--bps-text-dark) !important;
    }
}
