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

body {
    font-family: 'Lexend', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

/* Navigation Styles */
nav {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8800 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 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

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

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

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

.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: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

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

.nav-cta {
    background-color: #e000e0 !important;
    color: white !important;
    padding: 0.625rem 1.25rem !important;
    border-radius: 0.375rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: background-color 0.3s !important;
    white-space: nowrap !important;
    display: inline-block !important;
}

.nav-cta:hover {
    background-color: #c000c0 !important;
}

.mobile-menu-toggle {
    display: none;
    background: white;
    border: none;
    color: #ff6b00;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative !important;
    background: linear-gradient(135deg, #ff6b00 0%, #e000e0 100%) !important;
    color: white !important;
    padding: 5rem 1.5rem !important;
    text-align: center !important;
    overflow: hidden !important;
}

.hero::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    right: -10% !important;
    width: 500px !important;
    height: 500px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    z-index: 0 !important;
}

.hero::after {
    content: '' !important;
    position: absolute !important;
    bottom: -30% !important;
    left: -5% !important;
    width: 400px !important;
    height: 400px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 50% !important;
    z-index: 0 !important;
}

.hero-content {
    position: relative !important;
    z-index: 1 !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

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

.hero p {
    font-size: 1.25rem !important;
    margin-bottom: 2rem !important;
    line-height: 1.8 !important;
    color: white !important;
    opacity: 0.95 !important;
}

.hero-cta {
    background-color: white !important;
    color: #ff6b00 !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    border-radius: 0.5rem !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
    white-space: nowrap !important;
}

.hero-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
}

/* Container and Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

section {
    margin-bottom: 4rem;
}

section h2 {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    color: #1f2937 !important;
    line-height: 1.3 !important;
}

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

section p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #4b5563;
}

/* Images */
picture img {
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Lists */
ul, ol {
    margin-left: 0 !important;
    padding-left: 2rem !important;
    margin-bottom: 1.5rem !important;
    list-style: none !important;
}

ul li, ol li {
    font-size: 1.125rem !important;
    line-height: 1.8 !important;
    margin-bottom: 0.75rem !important;
    color: #4b5563 !important;
    position: relative !important;
    padding-left: 1.5rem !important;
    list-style: none !important;
}

ul li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.625rem !important;
    width: 8px !important;
    height: 8px !important;
    background-color: #e000e0 !important;
    border-radius: 50% !important;
}

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

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

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

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

thead th {
    color: white;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    font-size: 1rem;
}

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

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

tbody td {
    padding: 1rem;
    font-size: 1rem;
    color: #4b5563;
}

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

/* Cards */
.card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.card h3 {
    color: #ff6b00;
    margin-top: 0 !important;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff6b00;
}

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

.footer-section ul li {
    margin-bottom: 0.625rem !important;
    padding-left: 0 !important;
}

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Conversion Buttons */
.conversion-btn {
    background: linear-gradient(135deg, #e000e0 0%, #c000c0 100%) !important;
    color: white !important;
    padding: 1rem 2rem !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    border-radius: 0.5rem !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
    white-space: nowrap !important;
    text-align: center !important;
}

.conversion-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(224, 0, 224, 0.3) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

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

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

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

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

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

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

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

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

    .hero-cta {
        padding: 0.875rem 2rem !important;
        font-size: 1rem !important;
    }

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