/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Body */
body {
    background-color: #fcfafa;
    color: #1a1919;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Header */
header {
    background: #fcfafa;
    padding: 20px 0;
    border-bottom: 3px solid #fcfafa;
}

header h1 {
    margin-bottom: 5px;
}

header p {
    font-size: 14px;
}

nav {
    margin-top: 10px;
}

nav a {
    margin-right: 15px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    width: 100%;
    height: auto;          /* responsive height */
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center bottom; /* keep bottom visible */
}

/* Content Sections */
.content {
    padding: 40px 0;
    text-align: center;
    
}

.content.light {
    background: #e6e6e6;
    text-align: center;
}

.content.light ul {
    list-style-position: inside;
    padding: 0;
    margin: 0 auto;
    display: inline-block; /* keeps list centered as a block */
    text-align: center;
}

.content.light li {
    margin-bottom: 8px;
}

.content h2 {
    margin-bottom: 15px;
}

.content p {
    margin-bottom: 20px;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #f2f2f2;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Lists */
ul {
    list-style: disc;
    margin-left: 20px;
}

/* Map */
.map {
    padding: 40px 0;
    background: #ffffff;
}

/* Footer */
footer {
    background: #ffffff;
    padding: 15px 0;
    text-align: center;
    margin-top: 40px;
}
/* Header layout */
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Logo */
.logo {
    height: 100px; /* adjust as needed */
    max-width: 100%;
}

/* Header text */
.header-text {
    text-align: right;
}

.header-text p {
    margin-bottom: 8px;
}