/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
/* input,
select,
textarea {
    max-width: 280px;
} */

/* Custom Styles from Layout */
:root {
    --primary-color: #061a38;
    --accent-color: #1abc9c; /* Teal like SignInApp */
    --light-bg: #f8f9fa;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: #333;
    /* Sticky Footer Setup */
    min-height: 100vh;
    min-height: 100dvh; /* Modern mobile browsers */
    display: flex;
    flex-direction: column;
}

/* Make main content expand to fill space */
body > .container-fluid {
    flex: 1;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 1rem 2rem;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: #16a085;
    border-color: #16a085;
}

.hero-section {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
    border-radius: 0 0 50px 50px;
    margin-bottom: 3rem;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.plan-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}
