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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #36454F;
    background: #ffffff;
    font-size: 16px;
}

/* IMPORTANT: Tailwind CSS nav-menu fix */
.nav-menu li {
    margin-bottom: 0 !important;
}

/* Header and Navigation */
header {
    background: #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 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

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

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

.nav-menu a:hover {
    color: #FF7F50;
}

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

/* Hero Section */
.hero {
    position: relative !important;
    background: linear-gradient(135deg, #FF7F50 0%, #FF6347 100%) !important;
    padding: 120px 20px !important;
    overflow: hidden !important;
    min-height: 500px !important;
}

.hero-shapes {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.shape {
    position: absolute !important;
    opacity: 0.15 !important;
    animation: float 20s infinite ease-in-out !important;
}

.shape-1 {
    width: 200px !important;
    height: 200px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    top: 10% !important;
    left: 10% !important;
}

.shape-2 {
    width: 150px !important;
    height: 150px !important;
    background: #ffffff !important;
    transform: rotate(45deg) !important;
    top: 60% !important;
    right: 15% !important;
    animation-delay: 3s !important;
}

.shape-3 {
    width: 100px !important;
    height: 100px !important;
    background: #ffffff !important;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%) !important;
    bottom: 20% !important;
    left: 20% !important;
    animation-delay: 6s !important;
}

.shape-4 {
    width: 120px !important;
    height: 120px !important;
    background: #ffffff !important;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%) !important;
    top: 30% !important;
    right: 30% !important;
    animation-delay: 9s !important;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-30px) translateX(20px);
    }
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.hero h1 {
    color: #ffffff !important;
    font-size: 48px !important;
    font-weight: 800 !important;
    margin-bottom: 24px !important;
    line-height: 1.2 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2) !important;
}

.hero-description {
    color: #ffffff !important;
    font-size: 20px !important;
    margin-bottom: 16px !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 1.6 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2) !important;
}

.cta-button {
    display: inline-block !important;
    background: #ffffff !important;
    color: #FF7F50 !important;
    padding: 16px 48px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    margin-top: 32px !important;
    white-space: nowrap !important;
}

.cta-button:hover {
    background: #36454F !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
}

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

.section {
    margin-bottom: 80px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #36454F !important;
    font-weight: 700 !important;
    margin-bottom: 24px !important;
    line-height: 1.3 !important;
}

h1 {
    font-size: 48px !important;
}

h2 {
    font-size: 36px !important;
    padding-bottom: 16px !important;
    border-bottom: 3px solid #FF7F50 !important;
    display: inline-block !important;
}

h3 {
    font-size: 28px !important;
    color: #FF7F50 !important;
    margin-top: 32px !important;
}

h4 {
    font-size: 22px !important;
}

p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

strong {
    color: #FF7F50;
    font-weight: 600;
}

em {
    font-style: italic;
    color: #36454F;
}

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

.content ul li,
.content ol li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.6;
}

.content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #36454F;
    border-radius: 50%;
}

.content ol {
    counter-reset: item;
}

.content ol li {
    counter-increment: item;
}

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

/* Cards */
.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    color: #FF7F50;
    font-size: 48px;
    margin-bottom: 20px;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 32px 0;
    display: block;
}

/* Table Styles */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 32px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

thead {
    background: #FF7F50;
    color: #ffffff;
}

th {
    padding: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
}

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

tbody tr:hover {
    background: #f9f9f9;
}

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

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

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

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

.footer-section h3 {
    color: #FF7F50 !important;
    font-size: 20px !important;
    margin-bottom: 20px !important;
}

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

.footer-menu li {
    margin-bottom: 12px !important;
    list-style: none !important;
}

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

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

.footer-menu a:hover {
    color: #FF7F50 !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: #ffffff !important;
    font-size: 16px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid #e5e5e5;
    }

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

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

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

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

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

    .card {
        padding: 24px;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 80px 20px !important;
    }

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

    .hero-description {
        font-size: 16px !important;
    }

    .cta-button {
        padding: 14px 32px !important;
        font-size: 16px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    p, .content ul li, .content ol li {
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeIn 0.8s ease;
}

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

.mt-4 {
    margin-top: 32px;
}

.mb-4 {
    margin-bottom: 32px;
}
