.pricing-section {
    position: relative;
    padding: 150px 0px 90px;
    background: #f8fafc;
}

#root {
    margin-top: 50px;
    width: 100%;
    max-width: none;
}

.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-yellow-50 { background-color: #fefce8; }
.rounded-xl { border-radius: 0.75rem; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.p-6 { padding: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.text-gray-800 { color: #1f2937; }
.text-gray-600 { color: #4b5563; }
.text-gray-400 { color: #9ca3af; }
.text-gray-700 { color: #374151; }
.text-blue-600 { color: #2563eb; }
.text-green-600 { color: #16a34a; }
.text-yellow-600 { color: #ca8a04; }
.text-red-500 { color: #ef4444; }
.text-green-500 { color: #22c55e; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.w-full { width: 100%; }
.w-64 { width: 16rem; }
.border-b { border-bottom-width: 1px; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-100 { border-color: #f3f4f6; }
.rounded-md { border-radius: 0.375rem; }
.line-through { text-decoration: line-through; }
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:text-blue-800:hover { color: #1e40af; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

/* Table styles */
table {
    border-collapse: collapse;
    width: 100%;
    min-width: 100%;
    table-layout: auto;
}

th, td {
    border: none;
    vertical-align: middle;
    white-space: nowrap;
}

th:first-child, td:first-child {
    white-space: normal;
    min-width: 400px;
    max-width: 500px;
}

th:not(:first-child), td:not(:first-child) {
    min-width: 200px;
    text-align: center;
}

/* Video Modal Styles */
#videoModal {
    z-index: 9999;
}

#videoModal iframe {
    border-radius: 0 0 15px 15px;
}

/* Header Styles */
h1 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.025em;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-section {
        padding: 100px 0px 60px;
    }

    .w-64 {
        width: 12rem;
    }

    .text-2xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .text-5xl {
        font-size: 2.5rem;
        line-height: 1;
    }

    .text-xl {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .p-6 {
        padding: 1rem;
    }

    .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
