/* Basic typography + layout */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    color: #2b2b2b;
    line-height: 1.6;
    font-size: 15px;
}

/* Page container override for content pages */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

/* Form styles (kept for forms) */
input,
textarea,
select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    box-sizing: border-box;
    background: #fff;
}

button {
    padding: 10px 16px;
    background-color: #db5e24;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background-color: #b84a1c;
}

a {
    color: #db5e24;
}

a:hover {
    text-decoration: underline;
}

/* Header/banner */
.container-fluid[style*="background-color"] {
    background-color: #f2f2f2 !important;
}

.txtHead {
    font-family: 'Crimson Text', serif;
    font-size: 32px;
    color: #222;
}

.py-3 {
    color: #444;
}

/* Content card for policy pages */
.content-card {
    background: #fff;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 6px 30px rgba(9, 30, 66, 0.08);
    margin-top: 1rem;
}

.lead {
    font-size: 15px !important;
    color: #333;
}

/* Buttons */
.btn-get-started {
    background: #db5e24;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
}

.btn-get-started:hover {
    background: #b84a1c;
}

/* Footer */
.footerHome {
    background: #ffffff;
    border-top: 1px solid #eee;
    padding: 1rem 0;
    margin-top: 2.5rem;
}

.footerHome a {
    color: #db5e24;
    text-decoration: none;
}

.footerHome a:hover {
    text-decoration: underline;
}

/* Policy lists */
.policy-list li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (min-width:768px) {
    .container.mb-5 {
        max-width: 900px;
    }
}

@media (max-width:480px) {
    .txtHead {
        font-size: 24px;
    }

    .content-card {
        padding: 0;
    }
}

.container {
    padding: 10px;
}