* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

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

h2 {
    font-size: calc(1.4rem + 1.2vw);
}

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

h4 {
    font-size: calc(1.2rem + 0.6vw);
}

h5 {
    font-size: 1.25rem;
}

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

a {
    text-decoration: none;
    display: inline-block;
    transition: color .3s ease, opacity .3s ease;
    color: var(--primary-color);
}

a:hover {
    opacity: .8;
}

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

.mx-auto{
    margin: 0 auto;
}

button {
    cursor: pointer;
}

input, button, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

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

.display-3 {
    font-size: calc(1.8rem + 3.2vw);
    font-weight: 700;
    line-height: 1.1;
}

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

.display-5 {
    font-size: calc(1.4rem + 1.8vw);
    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: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 0.75rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
    outline: 0;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(95, 60, 148, 0.25);
}

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

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    margin-left: -1.75rem;
    vertical-align: top;
    background-color: #fff;
    border: 2px solid #e9ecef;
    appearance: none;
    border-radius: 0.25rem;
}

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

.form-check-label {
    cursor: pointer;
}

.btn {
    display: inline-block;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    user-select: none;
    border: 2px solid transparent;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 0.75rem;
    transition: all .3s ease;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 1rem;
}

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

.btn-primary:hover {
    background-color: #734b91;
    border-color: #734b91;
    color: white;
}

.btn-warning {
    background-color: var(--accent-color);
    color: var(--text-dark);
    border-color: var(--accent-color);
}

.btn-warning:hover {
    background-color: #f4a335;
    border-color: #f4a335;
    color: var(--text-dark);
}

.nav-link {
    display: block;
    padding: .75rem 1.25rem;
    transition: color .3s ease;
    color: var(--text-color);
    font-weight: 500;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.navbar > .container {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.5rem;
    white-space: nowrap;
    font-weight: 800;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.125rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .625rem;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.collapse:not(.show) {
    display: none;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

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

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

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

.object-fit-cover {
    object-fit: cover;
}

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

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

.top-0 {
    top: 0;
}

.start-0 {
    left: 0;
}

.end-0 {
    right: 0;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.d-flex {
    display: flex;
}

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

.d-block {
    display: block;
}

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

.flex-shrink-0 {
    flex-shrink: 0;
}

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

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

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

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

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

.text-start {
    text-align: left;
}

.text-end {
    text-align: right;
}

.text-white {
    color: white;
}

.text-dark {
    color: var(--text-dark);
}

.text-light {
    color: rgba(255, 255, 255, .75);
}

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

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

.text-accent {
    color: var(--accent-color);
}

.text-success {
    color: var(--success-color);
}

.text-warning {
    color: var(--warning-color);
}

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

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

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

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

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

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

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

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

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

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

.bg-gradient {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));
}

.bg-opacity-10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-opacity-20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.bg-opacity-60 {
    background-color: rgba(0, 0, 0, 0.6);
}

.opacity-90 {
    opacity: 0.9;
}

.rounded {
    border-radius: .375rem;
}

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

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

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

.rounded-circle {
    border-radius: 50%;
}

.border-secondary {
    border-color: #6c757d;
}

.p-2 {
    padding: .5rem;
}

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

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

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

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

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

.me-2 {
    margin-right: .5rem;
}

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

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

.me-6 {
    margin-right: 1.5rem;
}

.ms-auto {
    margin-left: auto;
}

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

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

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

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

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

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

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.g-4 > * {
    padding: .75rem;
}

.g-6 > * {
    padding: 1.5rem;
}

.g-8 > * {
    padding: 2rem;
}

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

.fw-light {
    font-weight: 300;
}

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

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

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

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

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

:root {
    --primary-color: #5f3c94;
    --secondary-color: #8b7cb6;
    --accent-color: #f5b547;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --text-color: #2c3e50;
    --text-dark: #1a202c;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
}

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

.overflow-hidden {
    overflow: hidden;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .py-md-12 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .p-md-12 {
        padding: 3rem;
    }
}

@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%;
    }
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
    }
    .navbar-expand-lg .navbar-collapse {
        display: flex;
        flex-basis: auto;
    }
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
    .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;
    }
    .mt-lg-0 {
        margin-top: 0;
    }
    .mt-lg-12 {
        margin-top: 3rem;
    }
    .text-lg-start {
        text-align: left;
    }
    .order-lg-1 {
        order: 1;
    }
    .order-lg-2 {
        order: 2;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    .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%;
    }
    .display-2 {
        font-size: 3.5rem;
    }
    .display-3 {
        font-size: 3rem;
    }
    .display-4 {
        font-size: 2.5rem;
    }
    .display-5 {
        font-size: 2rem;
    }
}

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