* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Fira Code', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    color: #1f2937;
    line-height: 1.625;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.main-container {
    max-width: 56rem;
    width: 100%;
    background-color: #ffffff;
    border-radius: 1rem 1rem 0 0;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.main-container:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.primary-header {
    background: linear-gradient(to right, #1f2937, #374151);
    color: #ffffff;
    padding: 2rem;
}

.main-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

.highlight-text {
    color: #facc15;
}

.sub-heading {
    font-size: 1rem;
    color: #e5e7eb;
    max-width: 42rem;
}

/* Main Content Area */
.content-body {
    padding: 2rem;
}

/* Stats Box */
.usage-stats-box {
    margin-bottom: 3rem;
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
}

.stats-inner {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.text-center { text-align: center; }

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-label {
    color: #4b5563;
    font-size: 1.125rem;
    letter-spacing: 0.025em;
}

/* CTA Button */
.action-area {
    margin-bottom: 2rem;
}

.cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: #ffffff;
    padding: 1.25rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s transform;
}

.cta-button:hover {
    background: linear-gradient(to right, #1d4ed8, #1e40af);
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.button-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.button-label {
    display: flex;
    align-items: center;
}

.icon-m {
    width: 1.5rem;
    height: 1.5rem;
}

.button-label .icon-m {
    margin-right: 0.75rem;
}

/* FAQ Styles */
.section-heading {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #374151;
}

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accordion-item {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    text-align: left;
    padding: 0.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.accordion-title {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4b5563;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow-icon {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.2s;
}

.accordion-panel {
    padding: 0.75rem;
    font-size: 0.875rem;
    color: #4b5563;
    border-top: 1px solid #e5e7eb;
}

.hidden {
    display: none;
}

/* Footer Styles */
.main-footer {
    width: 100%;
    max-width: 56rem;
    background: linear-gradient(to right, #1f2937, #374151);
    color: #ffffff;
    border-radius: 0 0 1rem 1rem;
    overflow: hidden;
}

.footer-grid-wrapper {
    padding: 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(4, 1fr);
    }
}

.col-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-list {
    list-style: none;
}

.link-list li {
    margin-bottom: 0.5rem;
}

.link-list a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
}

.link-list a:hover {
    color: #ffffff;
}

.bottom-bar {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #4b5563;
    text-align: center;
}

.copyright {
    font-size: 0.875rem;
    color: #9ca3af;
}

.copyright a {
    color: #d1d5db;
    text-decoration: none;
    margin: 0 0.25rem;
}

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