* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    font-family: 'Outfit', sans-serif;
    color: #1a1a2e;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.25;
}

h2 {
    font-size: calc(1.325rem + .9vw);
}

h3 {
    font-size: calc(1.3rem + .6vw);
}

h5 {
    font-size: 1.25rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: all .3s ease;
    color: #d94a20;
}

a:hover {
    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(1.575rem + 3.9vw);
    font-weight: 700;
    line-height: 1.1;
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 700;
    line-height: 1.1;
}

.display-5 {
    font-size: calc(1.425rem + 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;
}

.form-control {
    display: block;
    width: 100%;
    padding: .825rem 1.1875rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.2;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: .625rem;
    transition: all .3s ease;
}

.form-control:focus {
    outline: 0;
    border-color: #d94a20;
    box-shadow: 0 0 0 0.25rem rgba(217, 74, 32, 0.15);
}

.form-select {
    display: block;
    width: 100%;
    padding: .825rem 3.5625rem .825rem 1.1875rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.2;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: .625rem;
    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='%231a1a2e' 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 1.1875rem center;
    background-size: 16px 12px;
    transition: all .3s ease;
}

.form-select:focus {
    outline: 0;
    border-color: #d94a20;
    box-shadow: 0 0 0 0.25rem rgba(217, 74, 32, 0.15);
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 0;
    margin-bottom: 0;
}

.form-check-input {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0;
    margin-right: .5rem;
    vertical-align: top;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    appearance: none;
    border-radius: .375rem;
    transition: all .3s ease;
}

.form-check-input:checked {
    background-color: #d94a20;
    border-color: #d94a20;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.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.875rem;
    font-size: 1.125rem;
    border-radius: .625rem;
    transition: all .3s ease;
}

.btn-action-1 {
    background-color: #d94a20;
    color: #fff;
    border-color: #d94a20;
}

.btn-action-1:hover {
    background-color: #b63d1a;
    border-color: #b63d1a;
    color: #fff;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 74, 32, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    color: #d94a20;
    border-color: #d94a20;
}

.btn-outline-custom:hover {
    background-color: #d94a20;
    border-color: #d94a20;
    color: #fff;
    opacity: 1;
    transform: translateY(-2px);
}

.text-action-1 {
    color: #d94a20;
}

.bg-bg-2 {
    background-color: #fff5f2;
}

.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(217, 74, 32, 0.1);
    border-radius: 50%;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: #d94a20;
    border-radius: 1rem;
    z-index: -1;
}

.feature-card {
    background: #fff;
    border-radius: 1rem;
    transition: all .3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #d94a20;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d94a20 0%, #ff6b45 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.stat-box {
    background: #fff5f2;
    border-radius: .875rem;
    border: 2px solid #ffe6df;
}

.decoration-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #d94a20 0%, #ff6b45 100%);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.process-card {
    background: #fff;
    border-radius: 1rem;
    transition: all .3s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d94a20;
    opacity: 0.2;
    line-height: 1;
}

.cta-section {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(217, 74, 32, 0.1);
    border-radius: 50%;
}

.advantage-card {
    background: #fff;
    border-radius: 1rem;
    transition: all .3s ease;
    border-left: 4px solid #d94a20;
}

.advantage-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d94a20 0%, #ff6b45 100%);
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-wrapper {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.footer-section {
    background-color: #16213e;
    color: #e0e0e0;
}

.footer-section h3, .footer-section h4 {
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: .75rem;
}

.footer-links a {
    color: #e0e0e0;
    transition: all .3s ease;
}

.footer-links a:hover {
    color: #d94a20;
    padding-left: 5px;
}

.contact-info i {
    color: #d94a20;
    font-size: 1.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.content-box {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.content-box h2 {
    color: #0f3460;
}

.job-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all .3s ease;
    border-top: 4px solid #d94a20;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.badge-custom {
    display: inline-block;
    padding: .5rem 1rem;
    background: #fff5f2;
    color: #d94a20;
    border-radius: .5rem;
    font-size: .9rem;
    font-weight: 600;
}

.job-requirements {
    list-style: none;
    padding: 0;
}

.job-requirements li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: .5rem;
}

.job-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d94a20;
    font-weight: 700;
}

.benefit-box {
    background: #fff;
    border-radius: .875rem;
    border: 2px solid #fff5f2;
    transition: all .3s ease;
}

.benefit-box:hover {
    border-color: #d94a20;
    transform: scale(1.05);
}

.timeline-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d94a20 0%, #ff6b45 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.thank-you-box {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.shadow {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08) !important;
}

.shadow-lg {
    box-shadow: 0 15px 45px rgba(0,0,0,0.12) !important;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.d-flex {
    display: flex !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.w-100 {
    width: 100% !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

.mt-6 {
    margin-top: 1.5rem !important;
}

.mt-8 {
    margin-top: 2rem !important;
}

.mt-10 {
    margin-top: 2.5rem !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;
}

.ms-auto {
    margin-left: auto !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;
}

.p-12 {
    padding: 3rem !important;
}

.py-3 {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important;
}

.py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !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;
}

.ps-12 {
    padding-left: 3rem !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;
}

.text-center {
    text-align: center !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

@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%;
    }
    .mb-md-0 {
        margin-bottom: 0 !important;
    }
    .p-md-8 {
        padding: 2rem !important;
    }
    .p-md-12 {
        padding: 3rem !important;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .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;
    }
    .ps-lg-12 {
        padding-left: 3rem !important;
    }
    .order-1 {
        order: 1;
    }
    .order-2 {
        order: 2;
    }
    .order-lg-1 {
        order: 1 !important;
    }
    .order-lg-2 {
        order: 2 !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    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: 576px) {
    .display-3, .display-4, .display-5 {
        font-size: calc(1.2rem + 1.5vw) !important;
    }
    .py-10, .py-12, .py-15 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}