/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Critical CSS Rule for Tailwind Navigation */
.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;
}

/* Navigation Styles */
nav ul {
    list-style: none !important;
}

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

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

/* Footer Styles */
footer ul {
    list-style: none !important;
}

footer li {
    list-style: none !important;
    margin-bottom: 0 !important;
}

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

footer p {
    color: #e5e7eb !important;
}

/* Hero Section Styles */
.hero-section {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 500px !important;
    position: relative !important;
}

.hero-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(30, 58, 138, 0.85) !important;
}

.hero-content {
    position: relative !important;
    z-index: 10 !important;
}

.hero-section h1 {
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    color: #fff !important;
}

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

/* Heading Styles */
h1 {
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
}

h2 {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    margin-top: 3rem !important;
    margin-bottom: 1.5rem !important;
    color: #1e3a8a !important;
}

h3 {
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
    color: #1e3a8a !important;
}

/* Content List Styles */
.content-section ul,
.content-section ol {
    margin: 1.5rem 0 !important;
    padding-left: 2rem !important;
    list-style: none !important;
}

.content-section ul li,
.content-section ol li {
    position: relative !important;
    margin-bottom: 1rem !important;
    padding-left: 1.5rem !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
}

.content-section ul li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.6em !important;
    width: 8px !important;
    height: 8px !important;
    background-color: #d4af37 !important;
    border-radius: 50% !important;
}

.content-section ol {
    counter-reset: item !important;
}

.content-section ol li::before {
    content: counter(item) !important;
    counter-increment: item !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: #d4af37 !important;
    font-weight: 600 !important;
}

/* Paragraph Styles */
p {
    font-size: 18px !important;
    line-height: 1.8 !important;
    margin-bottom: 1rem !important;
}

/* Conversion Button Styles */
.cta-button {
    background-color: #d4af37 !important;
    color: #1e3a8a !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    padding: 1rem 2rem !important;
    border-radius: 0.5rem !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    border: none !important;
    white-space: nowrap !important;
    text-align: center !important;
}

.cta-button:hover {
    background-color: #b8941f !important;
    transform: translateY(-2px) !important;
}

/* Table Styles */
.table-container {
    overflow-x: auto !important;
    margin: 2rem 0 !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

table {
    width: 100% !important;
    border-collapse: collapse !important;
    min-width: 600px !important;
}

thead {
    background-color: #1e3a8a !important;
}

thead th {
    color: #fff !important;
    font-weight: 600 !important;
    padding: 1rem !important;
    text-align: left !important;
    font-size: 18px !important;
}

tbody tr {
    border-bottom: 1px solid #e5e7eb !important;
}

tbody tr:hover {
    background-color: #f9fafb !important;
}

tbody td {
    padding: 1rem !important;
    font-size: 18px !important;
}

/* Card Styles */
.card {
    background: #fff !important;
    border-radius: 0.5rem !important;
    padding: 2rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    margin-bottom: 2rem !important;
}

/* Image Styles */
img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 0.5rem !important;
}

.site-logo {
    box-shadow: none !important;
    border: none !important;
}

/* Icon Styles */
.icon {
    color: #1e3a8a !important;
}

.icon-gold {
    color: #d4af37 !important;
}

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

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

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

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

    body {
        font-size: 16px !important;
    }

    p {
        font-size: 16px !important;
    }

    .content-section ul li,
    .content-section ol li {
        font-size: 16px !important;
    }

    thead th,
    tbody td {
        font-size: 16px !important;
    }
}

/* Utility Classes */
.text-readable {
    color: #1f2937 !important;
}

.bg-primary {
    background-color: #1e3a8a !important;
}

.bg-accent {
    background-color: #d4af37 !important;
}

.text-primary {
    color: #1e3a8a !important;
}

.text-accent {
    color: #d4af37 !important;
}
