/* Example of a modern Google Font import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Basic Reset */
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif; /* Swapped in a modern font */
    color: #555;
    background: linear-gradient(to bottom, #7b8ba3 0%, #afc2de 100%);
    background-size: cover;
    min-height: 100vh;
    text-align: center; /* Centers default text; remove if you want different sections left-aligned */
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background-color: #0E324B;
    display: flex;
    justify-content: center; /* Horizontally center content */
    align-items: center;     /* Vertically center content */
}

/* Logo in the Navbar */
.navbar .navbar-brand {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.navbar .navbar-brand img {
    max-width: 200px; /* Adjust as needed to control logo size */
    width: 100%;
    height: auto;
}

/* Header wrap (if you have a main hero/header section) */
#headerwrap {
    background-color: #0E324B;
    color: white;
    padding: 50px 0;
    text-align: center; /* Ensures the headline or call-to-action is centered */
}

/* Content Section */
.content-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center; /* Center all text inside content section */
}

h1, h2, h3 {
    color: #0E324B; /* Tie headlines back to your brand color */
}

h2 {
    margin-top: 30px;
}

h3 {
    margin-top: 20px;
}

p, ul {
    font-size: 16px;
    line-height: 1.6;
}

/* For bullet lists */
ul {
    list-style: disc inside; /* A bit cleaner for centered text */
    padding-left: 0;        /* Remove default padding if you prefer central alignment */
}

ul li {
    margin-bottom: 10px;
}

/* Responsive images */
img.img-fluid {
    display: block;
    margin: 20px auto;
    max-width: 800px; /* The largest it can get */
    width: 100%;      /* Scale down for smaller screens */
    height: auto;
}
