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

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

html {
    scroll-behavior: smooth;
}

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

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

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;
    font-size: 1.5rem;
    font-weight: 700;
    color: seagreen;
    text-decoration: none;
}

nav .brand img {
    width: 40px;
    height: 20px;
}

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

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

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

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

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

nav .nav-links a:hover {
    color: seagreen;
}

nav .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

nav .cta-btn {
    padding: 0.625rem 1.25rem;
    border: 2px solid seagreen;
    background-color: transparent;
    color: seagreen;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

nav .cta-btn:hover {
    background-color: seagreen;
    color: #ffffff;
}

nav .cta-btn.secondary {
    border-color: fuchsia;
    color: fuchsia;
}

nav .cta-btn.secondary:hover {
    background-color: fuchsia;
    color: #ffffff;
}

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

.footer p, footer p {
    color: whitesmoke !important
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: seagreen;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #fdf4ff 100%);
    padding: 4rem 0 !important;
    margin-bottom: 3rem !important;
}

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

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

.hero-content p {
    font-size: 1.125rem !important;
    color: #333333 !important;
    margin-bottom: 2rem !important;
    line-height: 1.8 !important;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem !important;
    background-color: transparent !important;
    color: seagreen !important;
    border: 2px solid seagreen !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 1.125rem !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.hero-btn:hover {
    background-color: seagreen !important;
    color: #ffffff !important;
}

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

/* Table of Contents */
.toc {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.toc-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.toc-btn {
    padding: 0.625rem 1.25rem;
    border: 2px solid seagreen;
    background-color: transparent;
    color: seagreen;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

.toc-btn:hover {
    background-color: seagreen;
    color: #ffffff;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    margin-bottom: 4rem;
}

/* Typography */
h1 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: seagreen !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.3 !important;
}

h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: seagreen !important;
    margin-top: 3rem !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.3 !important;
}

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

p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 1.25rem;
}

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

ul li, ol li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: fuchsia;
    font-weight: 700;
    font-size: 1.25rem;
}

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

ol {
    counter-reset: item;
}

ol li {
    counter-increment: item;
}

ol li::before {
    content: counter(item) '. ';
    position: absolute;
    left: 0;
    color: fuchsia;
    font-weight: 700;
}

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

/* Remove markers from nav and footer */
nav ul,
nav ol,
footer ul,
footer ol {
    list-style: none !important;
}

nav li,
footer li {
    padding-left: 0 !important;
}

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

/* Cards */
.card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

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

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

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

thead {
    background-color: seagreen;
}

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

tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.3s ease;
}

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

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

tbody td strong {
    color: seagreen;
    font-weight: 600;
}

/* Images */
picture {
    display: block;
    margin: 2rem 0;
}

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

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

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

footer h4 {
    color: seagreen;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

footer li {
    margin-bottom: 0.75rem;
    padding-left: 0 !important;
}

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

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

footer a:hover {
    color: seagreen;
}

footer .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 0;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
    font-size: 0.95rem;
}

/* Conversion Button */
.conversion-btn {
    display: inline-block;
    padding: 1rem 2.5rem !important;
    background-color: transparent !important;
    color: fuchsia !important;
    border: 2px solid fuchsia !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 1.125rem !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    margin: 1.5rem 0 !important;
}

.conversion-btn:hover {
    background-color: fuchsia !important;
    color: #ffffff !important;
}

.conversion-center {
    text-align: center;
    margin: 3rem 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    nav .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }

    nav .cta-buttons {
        justify-content: center;
        width: 100%;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

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

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

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

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

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

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

    .hero-btn,
    .conversion-btn {
        padding: 0.875rem 1.75rem !important;
        font-size: 1rem !important;
    }

    nav .cta-btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .toc-btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}
