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

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.nav-logo {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none !important;
    flex-wrap: wrap;
}

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

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

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.nav-cta {
    background-color: #40e0d0 !important;
    color: #ffffff !important;
    padding: 10px 24px !important;
    border-radius: 6px;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.nav-cta:hover {
    background-color: #36c9ba !important;
    opacity: 1 !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
}

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

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-container {
        position: relative;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff5eb 0%, #e6f9f7 100%);
    padding: 80px 20px !important;
    margin-bottom: 60px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 24px !important;
    line-height: 1.2 !important;
}

.hero-content p {
    font-size: 20px !important;
    color: #333333 !important;
    margin-bottom: 32px !important;
    line-height: 1.6 !important;
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 36px !important;
    }

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

/* Conversion Buttons */
.btn-conversion {
    display: inline-block;
    background-color: #ff8c00;
    color: #ffffff;
    padding: 16px 40px !important;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.btn-conversion:hover {
    background-color: #ff6600;
}

/* Sections */
section {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

section h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 24px !important;
    margin-top: 40px !important;
}

section h3 {
    font-size: 28px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin-bottom: 16px !important;
    margin-top: 32px !important;
}

section p {
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 20px;
}

/* Images */
section picture {
    display: block;
    margin: 24px 0;
}

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

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

ul li, ol li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
}

ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: #40e0d0;
    border-radius: 2px;
}

ol {
    counter-reset: item;
}

ol li {
    counter-increment: item;
}

ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: #ff8c00;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

/* Nested lists inside list items */
ul li ul,
ul li ol,
ol li ul,
ol li ol {
    margin-top: 12px;
    margin-bottom: 12px;
}

/* Strong text in lists */
ul li strong,
ol li strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

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

thead {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
}

thead th {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    padding: 16px;
    text-align: left;
}

tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

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

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

tbody td {
    padding: 16px;
    font-size: 17px;
    color: #333333;
}

/* Cards for content sections */
.content-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ff8c00;
}

.content-card h3 {
    color: #ff8c00 !important;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    color: #ff8c00 !important;
}

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

.footer-section ul::before,
.footer-section ul::after {
    display: none !important;
}

.footer-section li {
    margin-bottom: 12px;
    padding-left: 0 !important;
    list-style: none !important;
}

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #40e0d0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    color: #999999;
    font-size: 16px;
}

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

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

    section h3 {
        font-size: 24px !important;
    }

    .hero {
        padding: 40px 20px !important;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Ensure no list markers on nav and footer */
nav ul,
nav ol,
footer ul,
footer ol {
    list-style: none !important;
    list-style-type: none !important;
}

nav li,
footer li {
    list-style: none !important;
    list-style-type: none !important;
}

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