* {
    box-sizing: border-box;
}

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

:root {
    --primary-color: #7c4dff;
    --accent-color: #e91e63;
    --secondary-color: #673ab7;
    --warning-color: #ff9800;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --bg-secondary: #512da8;
}

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

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    opacity: 0.8;
}

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

.mx-auto{
    margin: 0 auto;
}

.container {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

.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 { width: 100%; }
.col-md-6 { width: 50%; }
.col-lg-4 { width: 33.333%; }
.col-lg-6 { width: 50%; }
.col-lg-8 { width: 66.667%; }
.col-xl-6 { width: 50%; }

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-item {
    margin: 0 0.5rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

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

.navbar-toggler {
    display: none;
    background: none;
    border: 1px solid var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

.navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f3e5f5 100%);
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.btn {
    display: inline-block;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

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

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

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

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

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

.btn-warning:hover {
    background-color: #f57c00;
    border-color: #f57c00;
    color: white;
}

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

.form-control, .form-select {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--bg-color);
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(124, 77, 255, 0.25);
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
    margin-right: 0.5rem;
    vertical-align: top;
    border: 2px solid #dee2e6;
    border-radius: 0.25rem;
}

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

.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--bg-secondary) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.bg-warning { background-color: var(--warning-color) !important; }
.bg-light { background-color: var(--bg-light) !important; }
.bg-dark { background-color: var(--bg-dark) !important; }
.bg-white { background-color: white !important; }

.text-primary { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.text-warning { color: var(--warning-color) !important; }
.text-muted { color: var(--text-light) !important; }
.text-light { color: #adb5bd !important; }
.text-white { color: white !important; }

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

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

.rounded-3 { border-radius: 0.75rem !important; }
.rounded-4 { border-radius: 1rem !important; }
.rounded-5 { border-radius: 1.25rem !important; }
.rounded-pill { border-radius: 50rem !important; }
.rounded-circle { border-radius: 50% !important; }

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

.fs-1 { font-size: 1.5rem !important; }
.fs-2 { font-size: 1.25rem !important; }
.fs-3 { font-size: 1.125rem !important; }
.fs-4 { font-size: 1rem !important; }

.fw-light { font-weight: 300 !important; }
.fw-normal { font-weight: 400 !important; }
.fw-500 { font-weight: 500 !important; }
.fw-bold { font-weight: 700 !important; }

.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-15 { padding-top: 3.75rem !important; padding-bottom: 3.75rem !important; }
.py-25 { padding-top: 6.25rem !important; padding-bottom: 6.25rem !important; }

.py-lg-24 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
.py-lg-25 { padding-top: 6.25rem !important; padding-bottom: 6.25rem !important; }

.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }
.p-10 { padding: 2.5rem !important; }
.p-12 { padding: 3rem !important; }

.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
.px-12 { padding-left: 3rem !important; padding-right: 3rem !important; }

.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }

.m-4 { margin: 1rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-12 { margin-bottom: 3rem !important; }
.mb-15 { margin-bottom: 3.75rem !important; }

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

.me-2 { margin-right: 0.5rem !important; }
.me-4 { margin-right: 1rem !important; }
.ms-auto { margin-left: auto !important; }

.g-4 > * { padding: 1rem; }
.g-6 > * { padding: 1.5rem; }
.g-8 > * { padding: 2rem; }

.d-flex { display: flex !important; }
.d-inline-block { display: inline-block !important; }
.flex-column { flex-direction: column !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.text-center { text-align: center !important; }
.text-md-end { text-align: right !important; }

.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.overflow-hidden { overflow: hidden !important; }

.z-index-1 { z-index: 1 !important; }
.z-index-2 { z-index: 2 !important; }

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

.opacity-90 { opacity: 0.9 !important; }
.opacity-10 { opacity: 0.1 !important; }
.bg-opacity-10 { background-color: rgba(255, 255, 255, 0.1) !important; }
.bg-opacity-20 { background-color: rgba(255, 255, 255, 0.2) !important; }

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

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

.contact-info i {
    width: 20px;
    display: inline-block;
}

@media (max-width: 991px) {
    .navbar-toggler { display: block; }
    .navbar-collapse { display: none; }
    .navbar-nav { flex-direction: column; width: 100%; }
    .order-1 { order: 1; }
    .order-2 { order: 2; }
    .col-lg-4, .col-lg-6, .col-lg-8 { width: 100%; }
    .py-lg-24, .py-lg-25 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}

@media (max-width: 767px) {
    .col-md-6 { width: 100%; }
    .display-3, .display-4 { font-size: 2rem; }
    .fs-1 { font-size: 1.25rem !important; }
    .fs-2 { font-size: 1.125rem !important; }
    .py-15 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
    .text-md-end { text-align: left !important; }
}