@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;overflow-x:hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    color: #7a153a;
    margin-top: 0;
}

/* Header & Navigation */
header {
    background-color: #7a153a;
    color: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo img {
    max-height: 55px;
    background-color: #fff;
    padding: 5px 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}
nav a:hover {
    opacity: 0.8;
}

/* Common Section Styling */
section {
    padding: 4rem 5%;
}
.page-header {
    background-color: #e9ecef;
    text-align: center;
    padding: 3rem 5%;
    border-bottom: 1px solid #ddd;
}
.page-header h1 {
    margin: 0 0 10px 0;
    font-size: 2.5rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #7a153a;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s;
    font-family: 'Poppins', sans-serif;
}
.cta-button:hover {
    background-color: #5c0f2b;
}

/* Grids & Cards */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.card {
    background: white;
    border: 1px solid #eaeaea;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

/* Home Page Specifics */
.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: #7a153a;
    color: white;
    padding: 3rem 5%;
    text-align: center;
}
.stats-row h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 5px;
}
.stats-row p {
    font-size: 1.1rem;
    margin: 0;
}
.stats-item {
    margin: 10px 20px;
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
}

/* Footer & Footer Menu */
footer {
    background-color: #222;
    color: #ccc;
    text-align: center;
    padding: 4rem 5% 2rem 5%;
    margin-top: auto;
}
.footer-logo {
    margin-bottom: 30px;
}
.footer-logo img {
    max-height: 70px;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-menu a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.footer-menu a:hover {
    color: white;
}
.footer-divider {
    border-top: 1px solid #444;
    margin: 20px auto;
    max-width: 800px;
}
.footer-address {
    max-width: 650px;
    margin: 0 auto 10px auto;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bbb;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    .logo img {
        margin-bottom: 15px;
    }
    nav {
        justify-content: center;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    section {
        padding: 3rem 5%;
    }
    .grid-layout {
        grid-template-columns: 1fr;
    }
    .stats-row {
        flex-direction: column;
    }
    .stats-item {
        margin: 20px 0;
    }
}
