* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    font-family: 'Inter', 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: color .15s ease-in-out, opacity .15s ease-in-out;
    color: #2d6a8a;
}

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: 800;
    line-height: 1.1;
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 800;
    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;
    font-weight: 600;
}

.form-control, .form-select {
    display: block;
    width: 100%;
    padding: .825rem 1.1875rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.2;
    background-color: #ffffff;
    border: 2px solid #d1d5db;
    border-radius: .5rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus, .form-select:focus {
    outline: 0;
    border-color: #2d6a8a;
    box-shadow: 0 0 0 3px rgba(45, 106, 138, 0.1);
}

.form-select {
    padding-right: 3.5625rem;
    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 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.125rem;
    margin-right: .5rem;
    vertical-align: top;
    background-color: #ffffff;
    border: 2px solid #d1d5db;
    appearance: none;
    cursor: pointer;
    border-radius: .25rem;
}

.form-check-input:checked {
    background-color: #2d6a8a;
    border-color: #2d6a8a;
    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.5rem;
    font-size: 1.125rem;
    border-radius: .5rem;
    transition: all .2s ease-in-out;
}

.btn-action-1 {
    background-color: #2d6a8a;
    color: #ffffff;
    border-color: #2d6a8a;
}

.btn-action-1:hover {
    background-color: #1f4d66;
    border-color: #1f4d66;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 106, 138, 0.3);
}

.btn-light {
    background-color: #ffffff;
    color: #2d6a8a;
    border-color: #ffffff;
}

.btn-light:hover {
    background-color: #f1f5f9;
    border-color: #f1f5f9;
    color: #1f4d66;
}

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

.hero-section {
    background: linear-gradient(135deg, #2d6a8a 0%, #1f4d66 100%);
    color: #ffffff;
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-section-small {
    background: linear-gradient(135deg, #2d6a8a 0%, #1f4d66 100%);
    color: #ffffff;
}

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

.bg-accent {
    background: linear-gradient(135deg, #c77a3a 0%, #a65e28 100%);
}

.text-action-1 {
    color: #2d6a8a;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card {
    background-color: #ffffff;
    border-radius: .75rem;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d6a8a 0%, #1f4d66 100%);
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.75rem;
}

.icon-box-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c77a3a 0%, #a65e28 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.5rem;
}

.content-box {
    background-color: #ffffff;
    border-radius: .75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #c77a3a;
}

.contact-wrapper {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.footer-section {
    background-color: #1a1a2e;
    color: #e2e8f0;
}

.footer-section a {
    color: #e2e8f0;
}

.footer-section a:hover {
    color: #ffffff;
}

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

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

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

.footer-link {
    color: #e2e8f0;
    margin-right: 1.5rem;
}

.footer-link:last-child {
    margin-right: 0;
}

.policy-content h2 {
    color: #2d6a8a;
}

.thank-you-box {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.icon-success {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 4rem;
}

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

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

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

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

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

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

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

.mb-2 {
    margin-bottom: .5rem !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;
}

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

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

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

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

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

.p-6 {
    padding: 1.5rem !important;
}

.p-8 {
    padding: 2rem !important;
}

.p-10 {
    padding: 2.5rem !important;
}

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

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

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

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

.pt-6 {
    padding-top: 1.5rem !important;
}

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

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

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

.fs-5 {
    font-size: 1rem !important;
}

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

.rounded-2 {
    border-radius: .5rem !important;
}

.g-6 {
    gap: 1.5rem;
}

.g-8 {
    gap: 2rem;
}

@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;
    }
    .text-md-end {
        text-align: right !important;
    }
    .p-md-12 {
        padding: 3rem !important;
    }
    .p-md-15 {
        padding: 3.75rem !important;
    }
    .mb-md-0 {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 30%;
    }
    .col-lg-5 {
        flex: 0 0 auto;
        width: 40%;
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 48%;
    }
    .col-lg-7 {
        flex: 0 0 auto;
        width: 57%;
    }
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66%;
    }
    .col-lg-9 {
        flex: 0 0 auto;
        width: 73%;
    }
    .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;
    }
}

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