/* Tailwind CSS CDN will be loaded in HTML */

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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    background-color: #f5f5f5;
}

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

.navbar ul {
    list-style: none !important;
}

.navbar ul::before,
.navbar ul::after {
    display: none !important;
}

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

.navbar a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #ffffff;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #f5f5f5;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

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

.nav-cta-btn {
    background-color: #f5f5f5 !important;
    color: #008080 !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
}

.nav-cta-btn:hover {
    background-color: #ffffff !important;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #f5f5f5;
    font-size: 28px;
    cursor: pointer;
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #008080;
        flex-direction: column;
        padding: 1rem;
    }

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

    .nav-links li {
        margin: 0.5rem 0;
    }
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #006666 0%, #008080 100%) !important;
    padding: 4rem 1rem !important;
    color: #f5f5f5 !important;
    min-height: 500px !important;
    max-width: 100% !important;
}

.hero-section h1 {
    font-size: 48px !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
    color: #f5f5f5 !important;
}

.hero-section p {
    font-size: 20px !important;
    margin-bottom: 2rem !important;
    color: #f5f5f5 !important;
    line-height: 1.8 !important;
}

.hero-section img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 32px !important;
    }

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

/* Section Styles */
section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    margin-bottom: 2rem !important;
    color: #008080 !important;
    line-height: 1.3 !important;
}

section h3 {
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-top: 2rem !important;
    margin-bottom: 1.5rem !important;
    color: #006666 !important;
    line-height: 1.4 !important;
}

section p {
    font-size: 18px;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.8;
}

section img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Card Styles */
.card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* List Styles */
ul, ol {
    margin-left: 0 !important;
    padding-left: 0 !important;
    list-style: none !important;
}

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

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

section ol {
    counter-reset: list-counter;
}

section ol li {
    counter-increment: list-counter;
}

section ol li::before {
    content: counter(list-counter) !important;
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background-color: #008080;
    color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

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

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

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

thead {
    background-color: #008080;
    color: #f5f5f5;
}

th {
    padding: 1.25rem;
    text-align: left;
    font-weight: 700;
    font-size: 18px;
}

td {
    padding: 1.25rem;
    border-bottom: 1px solid #e5e5e5;
    font-size: 18px;
}

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

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

/* Button Styles */
.cta-button {
    display: inline-block;
    background-color: #008080 !important;
    color: #f5f5f5 !important;
    padding: 1rem 2.5rem !important;
    border-radius: 50px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    text-align: center !important;
}

.cta-button:hover {
    background-color: #006666 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.3);
}

.cta-button-secondary {
    background-color: #f5f5f5 !important;
    color: #008080 !important;
    border: 2px solid #008080 !important;
}

.cta-button-secondary:hover {
    background-color: #008080 !important;
    color: #f5f5f5 !important;
}

/* Footer Styles */
.footer {
    background-color: #006666;
    color: #f5f5f5;
    padding: 3rem 1rem 1.5rem;
    margin-top: 4rem;
}

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

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

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

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

.footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 245, 245, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 16px;
}

/* Icon Styles */
.icon {
    color: #008080;
    margin-right: 0.5rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 2rem 1rem;
    }

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

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

    .card {
        padding: 1.5rem;
    }

    th, td {
        padding: 0.75rem;
        font-size: 16px;
    }
}

/* Accessibility */
a:focus,
button:focus {
    outline: 2px solid #008080;
    outline-offset: 2px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
