/* Root Variables - Similar to Grove Street FSC */
:root {
    --primary-color: #d32f2f;
    --primary-dark: #9a0007;
    --accent-color: #ff6f00;
    --text-dark: #595959;
    --text-medium: #818181;
    --text-light: #a1a1a1;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --overlay-gray: rgba(161, 161, 161, 0.8);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', 'Georgia', 'Crimson Text', serif;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Amaranth', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.3;
    color: var(--text-dark);
}

h2 {
    font-size: 28px;
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 30px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.2rem;
    color: #000000;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 0.5rem 1rem;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 60%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-color: #333;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-content .location {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 1rem 0;
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
    font-weight: 300;
}

/* Events Banner */
.events-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 1.5rem 0;
    position: relative;
}

.events-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    padding: 0 3rem;
}

.events-label {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.events-content h3 {
    color: var(--white);
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.events-content p {
    color: var(--white);
    margin: 0;
    font-size: 16px;
    opacity: 0.95;
}

.close-banner {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.close-banner:hover {
    opacity: 0.8;
}

/* Mission Statement */
.mission {
    padding: 4rem 0;
    background: var(--white);
}

.mission-box {
    background: var(--overlay-gray);
    padding: 2.5rem 3rem;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.mission-box p {
    color: var(--white);
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

/* Content Cards */
.content-cards {
    padding: 4rem 0;
    background: var(--bg-light);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
    position: relative;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--overlay-gray);
    padding: 1.5rem;
}

.card-overlay h3 {
    color: var(--white);
    font-size: 22px;
    margin: 0;
    font-weight: 600;
}

/* Info Sections */
.info-section {
    padding: 4rem 0;
}

.info-section.alt-bg {
    background: var(--bg-light);
}

.info-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 17px;
    color: var(--text-medium);
}

.info-list li:before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Resources Links */
.info-content h3 {
    font-size: 22px;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-content h3:first-of-type {
    margin-top: 1.5rem;
}

.resources-links li {
    padding-left: 0;
}

.resources-links li:before {
    display: none;
}

.resources-links a {
    font-weight: 500;
    text-decoration: underline;
}

.map-placeholder {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    font-style: italic;
    color: var(--text-medium);
    border: 2px dashed #ccc;
}

.map-container {
    margin: 2rem 0;
    text-align: center;
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.community-map {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

/* Archives Section */
.archives-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem 0;
}

.archive-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.archive-box h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.archive-box p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.archive-box .committee-note {
    margin: 0;
}

/* Committee Section */
.committee-list {
    margin: 2rem 0;
}

.committee-member {
    padding: 1.5rem;
    margin: 1rem 0;
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.committee-member p {
    margin: 0;
    font-size: 16px;
}

.committee-member .member-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.committee-member .member-area {
    color: var(--text-medium);
    font-size: 15px;
    font-style: italic;
}

.committee-note {
    text-align: center;
    font-size: 14px;
    margin-top: 2rem;
    color: var(--text-medium);
}

/* Section Intro */
.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

/* Steps Section */
.steps-section {
    padding: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.step-header {
    margin-bottom: 1rem;
}

.step-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.step-box h3 {
    font-size: 1.35rem;
    margin: 0;
    color: var(--text-dark);
}

.step-box p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.step-box p:last-child {
    margin-bottom: 0;
}

.step-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.step-link:hover {
    text-decoration: underline;
}

/* Journey Timeline */
.journey-timeline {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.timeline-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #4caf50 0%, #4caf50 60%, var(--primary-color) 60%, var(--primary-color) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 8px;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid #4caf50;
    z-index: 1;
}

.timeline-item.active .timeline-marker {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.2);
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.timeline-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.timeline-item.active .timeline-badge {
    background: var(--primary-color);
    color: var(--white);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

.timeline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    margin-top: 0.5rem;
}

.timeline-link:after {
    content: "→";
    transition: transform 0.3s ease;
}

.timeline-link:hover:after {
    transform: translateX(4px);
}

/* Key Areas Section */
.key-areas-section {
    padding: 4rem 0;
    background: var(--white);
}

.key-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.key-area {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.key-area:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.key-area-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.key-area h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
}

.key-area > p {
    margin: 0 1.5rem 1rem 1.5rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.key-area-list {
    list-style: none;
    padding: 0;
    margin: 0 1.5rem 1.5rem 1.5rem;
}

.key-area-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    font-size: 15px;
}

.key-area-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.key-area-link {
    display: block;
    margin: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.key-area-link:hover {
    text-decoration: underline;
}

/* Action Grid Simple */
.action-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.action-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.action-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.action-box p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 15px;
}

.action-box p:last-child {
    margin-bottom: 0;
}

.action-box a {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.action-box a:hover {
    text-decoration: underline;
}

.note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-medium);
    margin: 0;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: var(--white);
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 8px;
}

.newsletter-box h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.newsletter-box p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-subscribe {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-subscribe:hover {
    background: var(--primary-dark);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Question Form */
.question-form {
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.question-form h3 {
    font-size: 22px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 2.5rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    margin-bottom: 0.5rem;
}

.logo-note {
    font-size: 12px;
    opacity: 0.7;
    margin: 0;
}

.logo-note a {
    color: var(--white);
    text-decoration: underline;
}

.footer-info {
    flex: 1;
    text-align: right;
}

.footer-info p {
    margin: 0.5rem 0;
    opacity: 0.9;
    font-size: 15px;
}

.emergency-notice {
    font-size: 14px;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Page Hero (for standalone pages like FAQs) */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 4rem 0 3rem 0;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* FAQs Section */
.faqs-section {
    padding: 4rem 0;
    background: var(--white);
}

.faqs-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-question {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.faq-answer {
    color: var(--text-medium);
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 1rem;
    font-size: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    padding-left: 2rem;
    margin: 1rem 0;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faqs-cta {
    max-width: 700px;
    margin: 4rem auto 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.faqs-cta h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faqs-cta p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Active Navigation Link */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    margin-top: 0;
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* News & Updates Section */
.news-section {
    padding: 4rem 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-item {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.news-item.featured {
    border-left: 4px solid var(--accent-color);
}

.news-date {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.news-item p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--primary-dark);
}

/* Success Stories Section */
.success-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

/* Community Photos & Archive */
.photos-section,
.photo-archive-section {
    padding: 4rem 0;
}

.photo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.photo-item {
    flex: 1 1 300px;
    max-width: 400px;
}

.photo-placeholder {
    width: 100%;
    border-radius: 8px;
}

.photo-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.photo-caption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

.archive-empty-note {
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
}

.success-story-featured {
    background: var(--white);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.success-story-featured h3 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.success-status {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.success-timeline {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.success-content {
    color: var(--text-medium);
    line-height: 1.8;
}

.success-highlight {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    margin-bottom: 2rem;
}

.success-content h4 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.success-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.success-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.success-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.success-callout {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.success-callout p {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
}

/* Priority Actions */
.priority-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.priority-action {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.priority-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.priority-action.featured {
    border: 2px solid var(--accent-color);
}

.priority-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    margin-top: 0;
}

.priority-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.priority-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* QR Code Placeholders */
.qr-placeholder {
    background: var(--white);
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    min-width: 200px;
}

.qr-note {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
}

/* Google Form Placeholders */
.google-form-placeholder {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    margin: 1rem 0;
}

.form-note {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.google-form-placeholder ul {
    color: var(--text-medium);
}

/* Google Form Embeds */
.google-form-embed {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.google-form-embed iframe {
    border: none;
    width: 100%;
}

.form-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.form-container .google-form-placeholder {
    flex: 1;
    min-width: 300px;
}

.form-container .google-form-embed {
    flex: 1;
    min-width: 300px;
}

/* QR Code Display */
.qr-code-display {
    background: var(--white);
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    min-width: 200px;
}

.qr-code-image {
    border-radius: 4px;
}

/* Form Link Boxes */
.form-link-box {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

.form-link-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.form-link-container .form-link-box {
    flex: 1;
    min-width: 300px;
}

.btn-large {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

/* Contact Section Updates */
.emergency-notice-contact {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.emergency-notice-contact p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

.privacy-notice {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.privacy-notice h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.privacy-notice p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        padding: 0;
    }

    .nav-links a {
        padding: 1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    h2 {
        font-size: 24px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero {
        min-height: 350px;
    }

    .hero-overlay {
        min-height: 350px;
    }

    .mission-box {
        padding: 2rem 1.5rem;
    }

    .mission-box p {
        font-size: 16px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .info-content p {
        font-size: 16px;
    }

    .info-list li {
        font-size: 15px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

    .events-content {
        flex-direction: column;
        padding: 0 2rem;
        text-align: center;
    }

    .events-content h3 {
        font-size: 18px;
    }

    .events-content p {
        font-size: 14px;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .logo-image {
        height: 50px;
    }

    .firewise-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline:before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-marker {
        left: 4px;
        width: 24px;
        height: 24px;
    }

    .key-areas-grid {
        grid-template-columns: 1fr;
    }

    .action-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .action-grid-simple {
        grid-template-columns: 1fr;
    }

    .resources-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .page-hero {
        padding: 3rem 0 2rem 0;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faqs-cta {
        padding: 2rem 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .success-story-featured {
        padding: 2rem;
    }

    .priority-actions {
        grid-template-columns: 1fr;
    }

    .priority-links {
        flex-direction: column;
        align-items: stretch;
    }

    .form-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content .location {
        font-size: 12px;
    }

    .card-overlay h3 {
        font-size: 18px;
    }

    .mission-box p {
        font-size: 15px;
    }

    .logo-text h1 {
        font-size: 0.95rem;
        line-height: 1.2;
    }

    .logo-image {
        height: 45px;
    }

    .events-content h3 {
        font-size: 16px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .firewise-intro-content h2,
    .timeline-header h2,
    .action-header h2,
    .resources-header h2 {
        font-size: 1.75rem;
    }

    .large-text {
        font-size: 1.1rem;
    }

    .visual-badge {
        padding: 2rem;
    }

    .badge-icon {
        font-size: 3rem;
    }

    .timeline-content {
        padding: 1.25rem;
    }

    .timeline-content h3 {
        font-size: 1.25rem;
    }

    .key-area h3 {
        font-size: 20px;
    }

    .action-item {
        padding: 1.5rem;
    }

    .resources-columns {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .page-hero p {
        font-size: 0.95rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .news-item {
        padding: 1.5rem;
    }

    .success-story-featured h3 {
        font-size: 1.5rem;
    }

    .success-content h4 {
        font-size: 1.1rem;
    }

    .priority-action {
        padding: 1.5rem;
    }

    .priority-content h3 {
        font-size: 1.1rem;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* Get Started Box for Take Action */
.get-started-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.get-started-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.get-started-box p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Certification Section */
.certification-section {
    background: var(--bg-light);
}

.certification-surveys {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.certification-survey-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-survey-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.certification-survey-box h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.certification-survey-box p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Community Boundary Section */
.community-boundary-section {
    padding: 4rem 0;
}

.community-boundary-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.boundary-content {
    max-width: 900px;
    margin: 0 auto;
}

.boundary-content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
    text-align: center;
}

/* Email Network Section */
.email-network-section {
    padding: 4rem 0;
    background: var(--white);
}

.email-network-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.email-network-section .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

/* Community Survey Section */
.community-survey-section {
    padding: 4rem 0;
}

.community-survey-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.community-survey-section .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.survey-focus-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.focus-area-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.focus-area-item h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.focus-area-item p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.survey-quote {
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.survey-quote blockquote {
    margin: 0;
}

.survey-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.7;
}

.survey-quote cite {
    font-style: normal;
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Involvement Grid for Take Action */
.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.involvement-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.involvement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.involvement-item h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.involvement-item p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.action-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.action-link:hover {
    text-decoration: underline;
}

/* Investment Section */
.investment-section {
    padding: 4rem 0;
}

.investment-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.investment-section .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.investment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.investment-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.investment-box h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.investment-box p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.investment-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.investment-list li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.privacy-note {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

/* Firewise Advantage Section */
.firewise-advantage {
    padding: 4rem 0;
}

.firewise-advantage h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.firewise-advantage .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.advantage-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.advantage-item p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* Contact Simple Section */
.contact-simple-section {
    padding: 4rem 0;
    background: var(--white);
}

.contact-simple-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-simple-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-simple-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 3rem;
    text-align: center;
}

.committee-contact-info {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.committee-contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.committee-list-simple {
    list-style: none;
    padding: 0;
    margin: 0;
}

.committee-list-simple li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-medium);
    font-size: 1.05rem;
}

.committee-list-simple li:last-child {
    border-bottom: none;
}

/* Committee Section */
.committee-section {
    padding: 4rem 0;
}

.committee-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.committee-section .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.committee-member-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.committee-member-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.committee-member-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

/* Print Styles */
@media print {
    /* Remove default browser headers/footers */
    @page {
        margin: 0.5cm;
        size: auto;
    }

    /* Hide elements that don't need to print */
    .mobile-menu-toggle,
    .close-banner,
    .btn-subscribe,
    .btn-submit {
        display: none !important;
    }

    /* Prevent page breaks inside important elements */
    .card,
    .mission-box,
    .newsletter-box,
    .committee-member,
    img {
        page-break-inside: avoid;
        break-inside: avoid;
    }

    /* Remove box shadows and transitions for print */
    * {
        box-shadow: none !important;
        transition: none !important;
        backdrop-filter: none !important;
    }

    /* Make navbar solid and visible for print */
    .navbar {
        background: white !important;
        position: static !important;
        box-shadow: none !important;
        padding: 1rem 0 !important;
    }

    header {
        position: static !important;
    }

    /* Optimize colors for print */
    body {
        background: white;
    }

    /* Make sure all text is readable */
    a {
        color: var(--primary-color);
        text-decoration: underline;
    }

    /* Ensure images fit properly */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Optimize hero section */
    .hero {
        min-height: 350px;
        page-break-after: avoid;
    }

    .hero-overlay {
        min-height: 350px;
    }

    /* Make forms readable */
    input, textarea {
        border: 1px solid #ccc !important;
    }
}
