/* Root Variables */
:root {
    --primary-color: #000000;
    --accent-color: #d2165e;
    --text-color: #333333;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --transition: all 0.3s ease;
}

/* Bootstrap Framework Critical Rules */
.navbar-nav {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.nav-item {
    margin-bottom: 0 !important;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 18px;
    margin: 0;
    padding: 0;
}

/* Typography */
h1 {
    font-size: 48px !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
}

h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
}

h3 {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin-top: 30px !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
}

p {
    font-size: 18px;
    margin-bottom: 16px;
}

/* Navigation */
.navbar {
    background-color: var(--bg-white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color) !important;
}

.navbar-brand img {
    height: 45px;
    width: 45px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 17px;
    padding: 8px 16px !important;
    transition: var(--transition);
    list-style: none !important;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-nav li {
    list-style: none !important;
}

.navbar-nav li::before,
.navbar-nav li::after {
    display: none !important;
    content: none !important;
}

.nav-cta-btn {
    background-color: var(--accent-color) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 0 !important;
    font-weight: 700 !important;
    margin-left: 10px;
    border: none;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-cta-btn:hover {
    background-color: #b01450 !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    padding: 120px 0 !important;
    margin-bottom: 60px !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(210, 22, 94, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    color: white !important;
}

.hero-content h1 {
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
}

.hero-content p {
    color: white !important;
    font-size: 20px !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8) !important;
    margin-bottom: 30px !important;
}

.hero-cta-btn {
    background-color: var(--accent-color) !important;
    color: white !important;
    padding: 16px 40px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    display: inline-block !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.hero-cta-btn:hover {
    background-color: #b01450 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(210, 22, 94, 0.4) !important;
}

/* Sections */
section {
    padding: 60px 0;
}

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

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

/* Cards */
.card {
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: var(--transition);
}

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

.card-header {
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 20px;
    padding: 15px 20px;
    border-radius: 0 !important;
}

.card-body {
    padding: 25px;
}

/* Lists - Reset and Custom Styling */
ul, ol {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}

.content-section ul li,
.content-section ol li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 18px;
    list-style: none;
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.content-section ol {
    counter-reset: custom-counter;
}

.content-section ol li {
    counter-increment: custom-counter;
}

.content-section ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Footer and Navbar - Remove all list styling */
.navbar ul,
.navbar ol,
.navbar li,
footer ul,
footer ol,
footer li {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.navbar li::before,
.navbar li::after,
.navbar li::marker,
footer li::before,
footer li::after,
footer li::marker {
    display: none !important;
    content: none !important;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: white;
}

table thead {
    background-color: var(--primary-color);
    color: white;
}

table th,
table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
    font-size: 17px;
}

table tbody tr:hover {
    background-color: var(--bg-light);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

picture img {
    display: block;
    margin: 30px auto;
}

/* Links */
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #b01450;
    text-decoration: underline;
}

/* Sticky CTA Button */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: var(--accent-color) !important;
    color: white !important;
    padding: 16px 28px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    transition: var(--transition) !important;
    white-space: nowrap !important;
    animation: pulse 2s infinite;
}

.sticky-cta:hover {
    background-color: #b01450 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(210, 22, 94, 0.5) !important;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Modal/Popup */
.bonus-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.bonus-modal.active {
    display: flex;
}

.bonus-modal-content {
    background-color: white;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border-radius: 0;
    text-align: center;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bonus-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.bonus-modal-close:hover {
    color: var(--accent-color);
}

.bonus-modal h3 {
    color: var(--primary-color);
    margin-bottom: 20px !important;
    margin-top: 0 !important;
}

.bonus-modal p {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 18px;
}

.bonus-modal-btn {
    background-color: var(--accent-color) !important;
    color: white !important;
    padding: 14px 35px !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    white-space: nowrap !important;
}

.bonus-modal-btn:hover {
    background-color: #b01450 !important;
    transform: translateY(-2px) !important;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 30px;
    margin-top: 60px;
}

footer h5 {
    color: white !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    font-size: 20px !important;
}

footer p,
footer a {
    color: white !important;
    font-size: 17px;
}

footer a:hover {
    color: var(--accent-color) !important;
}

footer ul {
    padding-left: 0 !important;
}

footer ul li {
    margin-bottom: 10px;
    list-style: none !important;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 16px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease;
}

.animate-slide-up {
    animation: slideInUp 0.6s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 36px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 22px !important;
    }

    .hero-section {
        padding: 80px 0 !important;
    }

    .hero-content p {
        font-size: 18px !important;
    }

    .hero-cta-btn {
        font-size: 18px !important;
        padding: 14px 30px !important;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px !important;
        font-size: 16px !important;
    }

    .bonus-modal-content {
        padding: 30px 20px;
    }

    section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: 30px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .navbar-brand img {
        height: 35px;
        width: 35px;
    }

    .nav-cta-btn {
        padding: 8px 16px !important;
        font-size: 15px !important;
    }
}
