/* Import Lexend font */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Lexend', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: #333 !important;
    background-color: #f5f5f5 !important;
}

/* Reset list styles */
ul, ol {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Navigation and footer - NO markers or pseudo-elements */
nav ul, nav ol, footer ul, footer ol {
    list-style: none !important;
}

nav ul li:before, nav ol li:before, footer ul li:before, footer ol li:before {
    display: none !important;
}

nav ul li:after, nav ol li:after, footer ul li:after, footer ol li:after {
    display: none !important;
}

nav ul li::marker, nav ol li::marker, footer ul li::marker, footer ol li::marker {
    display: none !important;
    content: none !important;
}

/* Content lists with custom amber markers */
.content ul, .content ol, main ul, main ol, section ul, section ol {
    margin-left: 0 !important;
    padding-left: 0 !important;
    list-style: none !important;
}

.content ul li, main ul li, section ul li {
    position: relative !important;
    padding-left: 35px !important;
    margin-bottom: 12px !important;
}

.content ul li::marker, main ul li::marker, section ul li::marker {
    display: none !important;
    content: none !important;
}

.content ul li:before, main ul li:before, section ul li:before {
    content: '▸' !important;
    position: absolute !important;
    left: 0 !important;
    color: #F59E0B !important;
    font-size: 20px !important;
    font-weight: bold !important;
}

.content ol li, main ol li, section ol li {
    position: relative !important;
    padding-left: 35px !important;
    margin-bottom: 12px !important;
    counter-increment: item !important;
}

.content ol li::marker, main ol li::marker, section ol li::marker {
    display: none !important;
    content: none !important;
}

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

.content ol li:before, main ol li:before, section ol li:before {
    content: counter(item) '.' !important;
    position: absolute !important;
    left: 0 !important;
    color: #F59E0B !important;
    font-weight: 600 !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 1.2rem !important;
    color: #1a1a1a !important;
}

h1 {
    font-size: 3rem !important;
    margin-bottom: 1.5rem !important;
}

h2 {
    font-size: 2.2rem !important;
    margin-top: 3rem !important;
    margin-bottom: 1.5rem !important;
}

h3 {
    font-size: 1.6rem !important;
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
}

p {
    margin-bottom: 1.2rem !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
}

strong {
    font-weight: 600 !important;
    color: #F59E0B !important;
}

/* Navigation */
.navbar {
    background-color: #1a1a1a !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    padding: 0 !important;
}

.navbar-brand {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #F59E0B !important;
}

.navbar-brand img {
    width: 40px !important;
    height: 40px !important;
}

.navbar-item {
    color: #fff !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    padding: 1rem 1.2rem !important;
}

.navbar-item:hover {
    background-color: #F59E0B !important;
    color: #1a1a1a !important;
}

.navbar-burger {
    color: #fff !important;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    padding: 4rem 1.5rem !important;
    min-height: 600px !important;
}

.hero .hero-body {
    display: flex !important;
    align-items: center !important;
}

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

.hero p {
    color: #e5e5e5 !important;
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
    line-height: 1.7 !important;
}

.hero-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-image img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

/* Conversion buttons */
.cta-button {
    display: inline-block !important;
    background-color: #F59E0B !important;
    color: #1a1a1a !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    padding: 1rem 2.5rem !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    white-space: nowrap !important;
    text-align: center !important;
}

.cta-button:hover {
    background-color: #D97706 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4) !important;
    color: #1a1a1a !important;
}

/* Sections */
section {
    padding: 4rem 1.5rem !important;
    background-color: #fff !important;
}

section:nth-child(even) {
    background-color: #fafafa !important;
}

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

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

.card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important;
    transform: translateY(-4px) !important;
}

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

table {
    width: 100% !important;
    background-color: #fff !important;
    border-collapse: collapse !important;
}

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

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

tbody tr {
    border-bottom: 1px solid #e5e5e5 !important;
    transition: background-color 0.2s ease !important;
}

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

tbody td {
    padding: 1rem !important;
    font-size: 17px !important;
    color: #333 !important;
}

/* Images */
picture, img {
    display: block !important;
}

img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

/* Footer */
.footer {
    background-color: #1a1a1a !important;
    color: #e5e5e5 !important;
    padding: 3rem 1.5rem 2rem !important;
}

.footer h4 {
    color: #F59E0B !important;
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
    font-weight: 600 !important;
}

.footer a {
    color: #e5e5e5 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    display: block !important;
    padding: 0.4rem 0 !important;
}

.footer a:hover {
    color: #F59E0B !important;
}

.footer-bottom {
    margin-top: 2rem !important;
    padding-top: 2rem !important;
    border-top: 1px solid #333 !important;
    text-align: center !important;
    color: #999 !important;
}

/* Material Icons */
.material-icons {
    color: #F59E0B !important;
    vertical-align: middle !important;
    margin-right: 8px !important;
}

/* Responsive design */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 2.5rem !important;
    }

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

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

    .hero {
        min-height: auto !important;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 17px !important;
    }

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

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

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

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

    .hero {
        padding: 2rem 1rem !important;
    }

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

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

    section {
        padding: 2.5rem 1rem !important;
    }

    .cta-button {
        font-size: 1rem !important;
        padding: 0.9rem 2rem !important;
    }

    .table-container {
        -webkit-overflow-scrolling: touch !important;
    }

    tbody td {
        font-size: 16px !important;
        padding: 0.8rem 0.6rem !important;
    }

    thead th {
        font-size: 0.95rem !important;
        padding: 1rem 0.6rem !important;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 16px !important;
    }

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

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

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

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

    .hero h1 {
        font-size: 1.8rem !important;
    }

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

    .cta-button {
        font-size: 0.95rem !important;
        padding: 0.8rem 1.5rem !important;
    }
}

/* Utility classes */
.mt-4 {
    margin-top: 2rem !important;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

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

.has-text-centered {
    text-align: center !important;
}
