* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    font-family: 'Quicksand', sans-serif;
    color: #1E293B;
    background-color: #FAFAFA;
}
.mx-auto{
    margin-left: auto;
    margin-right: auto;
}
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.25;
}

h1 { font-size: calc(1.375rem + 1.5vw); }
h2 { font-size: calc(1.325rem + .9vw); }
h3 { font-size: calc(1.3rem + .6vw); }
h4 { font-size: calc(1.275rem + .3vw); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

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: #D946EF;
}

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

.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;
    font-weight: 600;
}

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

.form-control:focus {
    outline: 0;
    border-color: #D946EF;
    box-shadow: 0 0 0 0.25rem rgba(217, 70, 239, 0.25);
}

.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: white;
    border: 1px solid #E2E8F0;
    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='%231E293B' 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: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-select:focus {
    outline: 0;
    border-color: #D946EF;
    box-shadow: 0 0 0 0.25rem rgba(217, 70, 239, 0.25);
}

.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: white;
    border: 1px solid #CBD5E1;
    appearance: none;
    cursor: pointer;
}

.form-check-input[type="checkbox"] {
    border-radius: .375rem;
}

.form-check-input:checked {
    background-color: #D946EF;
    border-color: #D946EF;
    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: 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, box-shadow .15s ease-in-out;
}

.btn-primary {
    background-color: #D946EF;
    color: white;
    border-color: #D946EF;
}

.btn-primary:hover {
    background-color: #C026D3;
    border-color: #C026D3;
    color: white;
    opacity: 1;
}

.btn-secondary {
    background-color: #0EA5E9;
    color: white;
    border-color: #0EA5E9;
}

.btn-secondary:hover {
    background-color: #0284C7;
    border-color: #0284C7;
    color: white;
    opacity: 1;
}

.btn-accent {
    background-color: #F97316;
    color: white;
    border-color: #F97316;
}

.btn-accent:hover {
    background-color: #EA580C;
    border-color: #EA580C;
    color: white;
    opacity: 1;
}

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

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

.bg-light {
    background-color: #F1F5F9;
}

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

.bg-dark {
    background-color: #0F172A;
}

.bg-primary {
    background-color: #D946EF;
}

.bg-secondary {
    background-color: #0EA5E9;
}

.bg-accent {
    background-color: #F97316;
}

.text-primary {
    color: #D946EF;
}

.text-secondary {
    color: #0EA5E9;
}

.text-accent {
    color: #F97316;
}

.text-muted {
    color: #64748B;
}

.text-light {
    color: #CBD5E1;
}

.text-white {
    color: white;
}

.text-dark {
    color: #0F172A;
}

.text-secondary-dark {
    color: #475569;
}

.bg-gradient {
    background-image: linear-gradient(135deg, var(--gradient-start, currentColor) 0%, var(--gradient-end, currentColor) 100%);
}

.bg-primary.bg-gradient {
    --gradient-start: #D946EF;
    --gradient-end: #A21CAF;
}

.bg-secondary.bg-gradient {
    --gradient-start: #0EA5E9;
    --gradient-end: #0369A1;
}

.bg-accent.bg-gradient {
    --gradient-start: #F97316;
    --gradient-end: #C2410C;
}

.rounded-3 { border-radius: .5rem; }
.rounded-4 { border-radius: .625rem; }
.rounded-5 { border-radius: .875rem; }
.rounded-circle { border-radius: 50%; }

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

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

.d-flex { display: flex; }
.d-inline-block { display: inline-block; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.min-vh-75 { min-height: 75vh; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow-1 { flex-grow: 1; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.text-center { text-align: center; }
.text-decoration-none { text-decoration: none; }
.fw-bold { font-weight: 700; }
.fw-light { font-weight: 300; }
.opacity-90 { opacity: .9; }

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

.p-3 { padding: .75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

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

.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-12 { margin-top: 3rem; }
.mt-15 { margin-top: 3.75rem; }

.me-3 { margin-right: .75rem; }
.me-4 { margin-right: 1rem; }
.me-6 { margin-right: 1.5rem; }

.g-4 > * { padding: 1rem; }
.g-6 > * { padding: 1.5rem; }
.g-8 > * { padding: 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; }
.fs-5 { font-size: 1rem; }

.border-top { border-top: 1px solid; }
.border-5 { border-width: 5px !important; }
.border-secondary { border-color: rgba(255, 255, 255, 0.1) !important; }

.bg-opacity-10 { opacity: 0.1; }
.bg-opacity-20 { opacity: 0.2; }

.z-index-2 { z-index: 2; }

.hero-section {
    background: linear-gradient(135deg, #F3E8FF 0%, #FAE8FF 100%);
}

.hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1) 0%, rgba(162, 28, 175, 0.1) 100%);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.feature-top-line {
    width: 100%;
    height: 6px;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-circle {
    width: 80px;
    height: 80px;
}

.value-icon-wrapper {
    width: 100px;
    height: 100px;
}

.numbered-badge {
    width: 50px;
    height: 50px;
}

.content-card-elevated {
    margin-top: 2rem;
}

.footer-section {
    border-top: 3px solid #D946EF;
}

.footer-links a {
    color: #CBD5E1;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D946EF;
    opacity: 1;
}

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

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

@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-8 { flex: 0 0 auto; width: 66.66666667%; }
    .col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }

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

    .mb-lg-0 { margin-bottom: 0; }
    .mt-lg-8 { margin-top: 2rem; }
    .order-lg-1 { order: 1; }
    .order-lg-2 { order: 2; }
}

@media (min-width: 1200px) {
    .container { max-width: 1140px; }
    .col-xl-3 { flex: 0 0 auto; width: 25%; }
    .col-xl-5 { flex: 0 0 auto; width: 41.66666667%; }
    .col-xl-6 { flex: 0 0 auto; width: 50%; }
    .col-xl-7 { flex: 0 0 auto; width: 58.33333333%; }
    .col-xl-8 { flex: 0 0 auto; width: 66.66666667%; }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.5rem; }
    .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; }
}

@media (max-width: 991px) {
    .order-2 { order: 2; }
    .mb-8 { margin-bottom: 2rem; }
    .content-card-elevated { margin-top: 0; }
}