* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #2d3142;
    background-color: #ffffff;
}
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.25;
}
h1 {
    font-size: calc(1rem + 2.5vw);
}
h2 {
    font-size: calc(1rem + .9vw);
}
h3 {
    font-size: calc(1rem + .6vw);
}
h4 {
    font-size: 1.5rem;
}
h5 {
    font-size: 1.25rem;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
a {
    text-decoration: none;
    display: inline-block;
    transition: all .3s ease;
    color: #ff6b35;
}
a:hover {
    color: #e55a28;
    opacity: .85;
}
img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}
button {
    cursor: pointer;
}
input, button, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
.display-3 {
    font-size: calc(1rem + 3vw);
    font-weight: 800;
    line-height: 1.1;
}
.display-4 {
    font-size: calc(1rem + 2.7vw);
    font-weight: 800;
    line-height: 1.1;
}
.display-5 {
    font-size: calc(1rem + 2.1vw);
    font-weight: 700;
    line-height: 1.1;
}
.container {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}
.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
}
.form-label {
    margin-bottom: .5rem;
    display: inline-block;
    font-weight: 600;
}
.form-control, .form-select {
    display: block;
    width: 100%;
    padding: .825rem 1.1875rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: .5rem;
    transition: all .3s;
}
.form-control:focus, .form-select:focus {
    outline: 0;
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}
.form-select {
    padding-right: 3rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}
.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 0;
    margin-bottom: 0;
}
.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0;
    margin-right: .5rem;
    vertical-align: top;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    appearance: none;
    cursor: pointer;
    transition: all .3s;
}
.form-check-input:checked {
    background-color: #ff6b35;
    border-color: #ff6b35;
}
.form-check-label {
    cursor: pointer;
}
.btn {
    display: inline-block;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    user-select: none;
    border: 2px solid transparent;
    padding: .825rem 1.8rem;
    font-size: 1rem;
    border-radius: .5rem;
    transition: all .3s ease;
}
.btn-action-1 {
    background-color: #ff6b35;
    color: #ffffff;
    border-color: #ff6b35;
}
.btn-action-1:hover {
    background-color: #e55a28;
    border-color: #e55a28;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.btn-cta {
    background-color: #ffffff;
    color: #1a2332;
    border-color: #ffffff;
    font-weight: 800;
}
.btn-cta:hover {
    background-color: #f8f9fa;
    color: #1a2332;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn-outline-main {
    background-color: transparent;
    color: #1a2332;
    border-color: #1a2332;
}
.btn-outline-main:hover {
    background-color: #1a2332;
    color: #ffffff;
    transform: translateY(-2px);
}
.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}
.bg-bg-2 {
    background-color: #f4f5f7;
}
.hero-main {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    color: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.hero-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: rgba(255, 107, 53, 0.1);
    transform: rotate(-15deg);
    border-radius: 50%;
}
.cta-gradient {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.cta-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    opacity: 0.9;
}
.cta-final {
    background-color: #1a2332;
    color: #ffffff;
}
.feature-card {
    background: #ffffff;
    border-radius: 1rem;
    transition: all .3s ease;
    border: 2px solid #f0f0f0;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
}
.feature-icon {
    color: #ff6b35;
}
.stats-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 1rem;
    border: 2px solid #e0e0e0;
    transition: all .3s;
}
.stats-card:hover {
    transform: translateY(-3px);
    border-color: #ff6b35;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
}
.stats-card h3 {
    color: #ff6b35;
}
.program-item {
    background: #ffffff;
    border-left: 4px solid #ff6b35;
    border-radius: .5rem;
    transition: all .3s;
}
.program-item:hover {
    background: #fff8f5;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.program-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
}
.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.contact-info {
    font-size: 1.1rem;
}
.contact-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}
.contact-item i {
    color: #ff6b35;
    font-size: 1.3rem;
}
.footer-main {
    background-color: #1a2332;
    color: #e0e0e0;
}
.footer-main h3, .footer-main h4 {
    color: #ffffff;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: .75rem;
}
.footer-links a {
    color: #e0e0e0;
    transition: all .3s;
}
.footer-links a:hover {
    color: #ff6b35;
    padding-left: 5px;
}
.footer-contact {
    color: #c0c0c0;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-link {
    color: #e0e0e0;
    margin: 0 .5rem;
}
.footer-link:hover {
    color: #ff6b35;
}
.page-header {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    color: #ffffff;
}
.policy-content h2 {
    color: #1a2332;
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #ff6b35;
}
.policy-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}
.course-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: #ffffff;
    padding: .5rem 1.2rem;
    border-radius: 2rem;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.course-details {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: .75rem;
    border-left: 4px solid #ff6b35;
}
.detail-item {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}
.detail-item i {
    color: #ff6b35;
    font-size: 1.3rem;
}
.benefit-card {
    background: #ffffff;
    border-radius: .75rem;
    border: 2px solid #f0f0f0;
    transition: all .3s;
    height: 100%;
}
.benefit-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}
.benefit-icon {
    color: #ff6b35;
}
.module-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 2px solid #e8e8e8;
    transition: all .3s;
    height: 100%;
}
.module-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
}
.module-header {
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}
.module-number {
    display: inline-block;
    background: #ff6b35;
    color: #ffffff;
    padding: .3rem .8rem;
    border-radius: .3rem;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.module-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}
.module-list li {
    padding: .6rem 0;
    padding-left: 1.8rem;
    position: relative;
}
.module-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.1rem;
}
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f4f5f7 0%, #ffffff 100%);
    padding: 3rem 0;
}
.thanks-icon {
    font-size: 5rem;
    color: #ff6b35;
}
.rounded-2 {
    border-radius: .625rem !important;
}
.d-flex {
    display: flex !important;
}
.flex-column {
    flex-direction: column !important;
}
.align-items-center {
    align-items: center !important;
}
.align-items-start {
    align-items: flex-start !important;
}
.justify-content-center {
    justify-content: center !important;
}
.text-center {
    text-align: center !important;
}
.w-100 {
    width: 100% !important;
}
.mt-4 {
    margin-top: 1rem !important;
}
.mt-6 {
    margin-top: 1.5rem !important;
}
.mt-8 {
    margin-top: 2rem !important;
}
.mt-12 {
    margin-top: 3rem !important;
}
.mt-15 {
    margin-top: 3.75rem !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-2 {
    margin-bottom: .5rem !important;
}
.mb-3 {
    margin-bottom: .75rem !important;
}
.mb-4 {
    margin-bottom: 1rem !important;
}
.mb-5 {
    margin-bottom: 1.25rem !important;
}
.mb-6 {
    margin-bottom: 1.5rem !important;
}
.mb-8 {
    margin-bottom: 2rem !important;
}
.mb-10 {
    margin-bottom: 2.5rem !important;
}
.mb-12 {
    margin-bottom: 3rem !important;
}
.mb-15 {
    margin-bottom: 3.75rem !important;
}
.me-2 {
    margin-right: .5rem !important;
}
.me-3 {
    margin-right: .75rem !important;
}
.me-4 {
    margin-right: 1rem !important;
}
.me-6 {
    margin-right: 1.5rem !important;
}
.p-6 {
    padding: 1.5rem !important;
}
.p-8 {
    padding: 2rem !important;
}
.p-10 {
    padding: 2.5rem !important;
}
.py-3 {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important;
}
.py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}
.py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
.py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
}
.pt-6 {
    padding-top: 1.5rem !important;
}
.fs-1 {
    font-size: 1.5rem !important;
}
.fs-2 {
    font-size: 1.375rem !important;
}
.fs-3 {
    font-size: 1.25rem !important;
}
.fs-4 {
    font-size: 1.125rem !important;
}
.fw-bold {
    font-weight: 700 !important;
}
.g-4 > * {
    padding: 1rem;
}
.g-6 > * {
    padding: 1.5rem;
}
.g-8 > * {
    padding: 2rem;
}
section{
    overflow:hidden;
}
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .text-md-start {
        text-align: left !important;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .order-lg-1 {
        order: 1;
    }
    .order-lg-2 {
        order: 2;
    }
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }
    .py-lg-15 {
        padding-top: 3.75rem !important;
        padding-bottom: 3.75rem !important;
    }
    .py-lg-20 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
    .py-lg-25 {
        padding-top: 6.25rem !important;
        padding-bottom: 6.25rem !important;
    }
    .text-lg-start {
        text-align: left !important;
    }
    .text-lg-end {
        text-align: right !important;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    h1 {
        font-size: 3.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.75rem;
    }
    .display-3 {
        font-size: 4.5rem;
    }
    .display-4 {
        font-size: 3.5rem;
    }
    .display-5 {
        font-size: 3rem;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
@media (max-width: 991px) {
    .hero-main {
        padding: 3rem 0;
    }
    .order-1 {
        order: 1;
    }
    .order-2 {
        order: 2;
    }
}