/* This file contains general CSS rules for the entire website.
   It is separated from Tailwind classes for clarity and project organization.
*/

/* Base Font Fallback */
body {
    font-family: 'Inter', sans-serif;
}

/* Ensure full width and centering for content */
.container {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Header Styles */
#header {
    border-bottom: 3px solid #004d40; /* Teal accent line */
}

/* Footer Styles */
#footer {
    background-color: #1f2937; /* Dark Gray */
}

/* Pricing Section Overrides (For the pages containing the Stripe embed) */
/* This ensures the pricing tables look clean when embedded */
.pricing-page-container {
    padding: 3rem 1rem;
}
