* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}
header,footer,section{
    overflow: hidden;
}
h1, h2, h3, h4, h5 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: calc(1.5rem + 1.5vw);
}

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

h3 {
    font-size: calc(1.3rem + .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: color .15s ease-in-out, opacity .15s ease-in-out;
}

a:hover {
    opacity: .7;
}

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

.display-6 {
    font-size: calc(1.375rem + 1.5vw);
    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: transparent;
    border-radius: .625rem;
}

.form-control:focus {
    outline: 0;
}

.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: transparent;
    border-radius: .625rem;
    appearance: none;
}

.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: transparent;
    appearance: none;
}

.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: 1px solid transparent;
    padding: .825rem 1.1875rem;
    font-size: 1.125rem;
    border-radius: .625rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.btn-lg {
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
}

.gap-4 {
    gap: 1rem;
}

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

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.d-flex {
    display: flex;
}

.d-inline-block {
    display: inline-block;
}

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

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

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

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

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

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

.text-white {
    color: #fff;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: .5rem;
}

.mb-3 {
    margin-bottom: .75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-15 {
    margin-bottom: 3.75rem;
}

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

.mt-10 {
    margin-top: 2.5rem;
}

.me-3 {
    margin-right: .75rem;
}

.me-4 {
    margin-right: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-10 {
    padding: 2.5rem;
}

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

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-15 {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.pt-8 {
    padding-top: 2rem;
}

.fs-1 {
    font-size: 1.5rem;
}

.fs-2 {
    font-size: 1.375rem;
}

.fs-3 {
    font-size: 1.25rem;
}

.fs-4 {
    font-size: 1.125rem;
}

.fw-bold {
    font-weight: 700;
}

.rounded-3 {
    border-radius: .5rem;
}

.rounded-4 {
    border-radius: .625rem;
}

.overflow-hidden {
    overflow: hidden;
}

.g-4 > * {
    padding-right: .5rem;
    padding-left: .5rem;
    margin-bottom: 1rem;
}

.g-6 > * {
    padding-right: .75rem;
    padding-left: .75rem;
    margin-bottom: 1.5rem;
}

.g-8 > * {
    padding-right: 1rem;
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.opacity-85 {
    opacity: .85;
}

.opacity-90 {
    opacity: .9;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .p-md-8 {
        padding: 2rem;
    }
    .p-md-12 {
        padding: 3rem;
    }
}

@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%;
    }
    .order-lg-1 {
        order: 1;
    }
    .order-lg-2 {
        order: 2;
    }
    .mt-lg-0 {
        margin-top: 0;
    }
    .py-lg-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .py-lg-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .py-lg-25 {
        padding-top: 6.25rem;
        padding-bottom: 6.25rem;
    }
    .py-lg-12 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    h1 {
        font-size: 2.75rem;
    }
    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;
    }
    .display-6 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

:root {
    --primary-color: #2d5f7e;
    --secondary-color: #e8734f;
    --accent-color: #fdb44b;
    --dark-color: #1a3a4a;
    --light-bg: #f8f9fa;
    --white-bg: #ffffff;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #2c3e50;
    background-color: var(--white-bg);
}

.hero-section {
    background: linear-gradient(135deg, #2d5f7e 0%, #1a3a4a 100%);
    color: #fff;
}

.bg-bg-2 {
    background-color: var(--light-bg);
}

.bg-bg-3 {
    background-color: #fff;
}

.bg-white {
    background-color: #fff;
}

.btn-action-1 {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.btn-action-1:hover {
    background-color: #d9632e;
    border-color: #d9632e;
    color: white;
    opacity: 1;
}

.btn-outline-action {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-action:hover {
    background-color: white;
    color: var(--primary-color);
    opacity: 1;
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-light:hover {
    background-color: var(--light-bg);
    border-color: var(--light-bg);
    opacity: 1;
}

.text-action-1 {
    color: var(--primary-color);
}

.form-control, .form-select {
    border: 2px solid #dee2e6;
    background-color: white;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(45, 95, 126, 0.15);
}

.form-check-input {
    border: 2px solid #dee2e6;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: .625rem;
    z-index: -1;
}

.feature-card {
    transition: transform .3s ease, box-shadow .3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.gradient-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a4a 100%);
    color: white;
}

.info-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 1rem 1.5rem;
    border-radius: .5rem;
    font-weight: 700;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.content-card {
    background: linear-gradient(135deg, var(--secondary-color), #d9632e);
    color: white;
}

.content-card-alt {
    background: linear-gradient(135deg, var(--accent-color), #ffa726);
    color: white;
}

.benefit-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: .625rem;
    border-left: 5px solid var(--secondary-color);
    transition: transform .3s ease;
}

.benefit-card:hover {
    transform: translateX(10px);
}

.benefit-header i {
    color: var(--primary-color);
}

.cta-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
}

.contact-wrapper {
    background-color: var(--light-bg);
    border: 3px solid var(--primary-color);
}

.footer-section {
    background-color: var(--dark-color);
    color: white;
}

.footer-section .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: color .3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

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

.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
}

.about-content {
    background-color: white;
    padding: 3rem;
    border-radius: .625rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.timeline-item::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 15px;
    width: 2px;
    height: calc(100% + 2rem);
    background-color: var(--primary-color);
}

.timeline-item:last-child::after {
    display: none;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    padding: 4rem 0;
}

.content-section {
    padding: 3rem 0;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--secondary-color);
}

.content-section h3 {
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.back-btn:hover {
    color: var(--secondary-color);
}

textarea.form-control {
    resize: vertical;
}

@media (max-width: 991px) {
    .order-1 {
        order: 1;
    }
    .order-2 {
        order: 2;
    }
}