/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Navigation - IMPORTANT: Remove all default list styling */
.nav-menu {
    list-style: none !important;
}

.nav-menu li {
    margin-bottom: 0 !important;
    list-style: none !important;
}

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

.nav-menu li::marker {
    display: none !important;
    content: none !important;
}

/* Header and Navigation */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 48px;
    height: 48px;
    box-shadow: none !important;
}

.brand-name {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #DC143C !important;
    margin: 0 !important;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none !important;
}

nav ul li {
    list-style: none !important;
    margin: 0 !important;
}

nav ul li::before,
nav ul li::after,
nav ul li::marker {
    display: none !important;
    content: none !important;
}

nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

nav a:hover {
    color: #DC143C;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: #DC143C;
    color: #F5F5F0;
    border: none;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
        margin-top: 1rem;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #DC143C 0%, #a01028 100%) !important;
    color: #F5F5F0 !important;
    padding: 5rem 2rem !important;
    text-align: center !important;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    color: #F5F5F0 !important;
    line-height: 1.2 !important;
}

.hero-section p {
    font-size: 1.25rem !important;
    margin-bottom: 1rem !important;
    color: #F5F5F0 !important;
    line-height: 1.6 !important;
}

.hero-section .cta-button {
    display: inline-block;
    background-color: #F5F5F0 !important;
    color: #DC143C !important;
    padding: 1rem 2.5rem !important;
    text-decoration: none;
    font-weight: 700 !important;
    font-size: 1.125rem !important;
    border-radius: 4px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    white-space: nowrap !important;
}

.hero-section .cta-button:hover {
    background-color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem !important;
    }

    .hero-section p {
        font-size: 1.125rem !important;
    }
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

section {
    margin-bottom: 4rem;
}

/* Headings */
h1 {
    font-size: 2.75rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    color: #1a1a1a !important;
    line-height: 1.2 !important;
}

h2 {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    margin-top: 2.5rem !important;
    color: #DC143C !important;
    line-height: 1.3 !important;
}

h3 {
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    margin-bottom: 1.25rem !important;
    margin-top: 2rem !important;
    color: #1a1a1a !important;
    line-height: 1.4 !important;
}

/* Paragraphs */
p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

/* Lists - Content lists with styling */
main ul,
main ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    list-style: none;
}

main ul li,
main ol li {
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.6;
    padding-left: 1.5rem;
}

main ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background-color: #F5F5F0;
    border: 2px solid #DC143C;
    border-radius: 50%;
}

main ul li::marker {
    display: none !important;
}

main ol {
    counter-reset: item;
}

main ol li {
    counter-increment: item;
}

main ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #DC143C;
    font-weight: 700;
}

main ol li::marker {
    display: none !important;
}

/* Cards */
.card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: #ffffff;
}

thead {
    background-color: #DC143C;
    color: #F5F5F0;
}

th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.125rem;
}

td {
    padding: 1rem;
    border-bottom: 1px solid #e5e5e5;
    font-size: 1.0625rem;
}

tbody tr:hover {
    background-color: #fafafa;
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Conversion Buttons */
.cta-button {
    display: inline-block;
    background-color: #DC143C;
    color: #F5F5F0;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    margin: 1rem 0;
}

.cta-button:hover {
    background-color: #a01028;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #F5F5F0;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #F5F5F0 !important;
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
}

.footer-section p,
.footer-section a {
    color: #F5F5F0 !important;
    font-size: 1rem !important;
}

footer ul {
    list-style: none !important;
    padding: 0 !important;
}

footer ul li {
    margin-bottom: 0.75rem !important;
    list-style: none !important;
}

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

footer a {
    color: #F5F5F0;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #DC143C;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #F5F5F0 !important;
    font-size: 1rem !important;
}

/* Font Awesome Icons */
.fa {
    color: #DC143C;
    margin-right: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    h3 {
        font-size: 1.375rem !important;
    }

    .header-container {
        padding: 0 1rem;
    }

    main {
        padding: 2rem 1rem;
    }

    .hero-section {
        padding: 3rem 1rem !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Strong elements */
strong {
    color: #DC143C;
    font-weight: 700;
}
