/* Reset and base */
* { box-sizing: border-box; }
body { margin: 0; font-family: 'Arial', sans-serif; color: #1a1a1a; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; border-radius: 4px; }

/* Header */
header { background-color: #000; color: #fff; padding: 10px 20px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; }
header .logo img { height: 45px; }
header nav a { margin-left: 20px; font-weight: 600; color: #fff; }
header nav a:hover { color: #c0151a; }

/* Hero */
.hero { position: relative; color: #fff; text-align: center; display: flex; align-items: center; justify-content: center; height: 60vh; background-size: cover; background-position: center; }
.hero::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
.hero .hero-content { position: relative; z-index: 1; max-width: 700px; padding: 0 20px; }
.hero h1 { font-size: 2.8rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; }
.hero .btn { padding: 12px 30px; background: #c0151a; border-radius: 4px; color: #fff; font-weight: 600; }
.hero .btn:hover { background: #9e0f15; }

/* If multiple buttons appear next to each other, add spacing */
.hero .btn + .btn {
  margin-left: 10px;
}

/* Sections */
section { padding: 60px 20px; }
section h2 { font-size: 2rem; margin-bottom: 20px; color: #c0151a; text-align: center; }

/* Cards for offerings */
.offerings { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; }
.offer-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.offer-card img { height: 200px; width: 100%; object-fit: cover; }
.offer-card .content { padding: 20px; }
.offer-card h3 { margin: 0 0 10px 0; color: #c0151a; font-size: 1.4rem; }
.offer-card p { margin: 0; font-size: 0.95rem; }

/* Two column section */
.two-col { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; max-width: 1000px; margin: 0 auto; }
.two-col .text { flex: 1 1 300px; }
.two-col .img { flex: 1 1 300px; }
.two-col .text p { margin-bottom: 20px; }

/* Contact banner */
.contact-banner { background: #1a1a1a; color: #fff; text-align: center; padding: 40px 20px; }
.contact-banner .btn { margin-top: 20px; padding: 12px 30px; background: #c0151a; border-radius: 4px; color: #fff; font-weight: 600; }
.contact-banner .btn:hover { background: #9e0f15; }

/* Footer */
footer { background-color: #000; color: #fff; padding: 20px; text-align: center; font-size: 0.9rem; }

/* Responsive adjustments */
@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  header nav a { margin-left: 10px; font-size: 0.9rem; }
}
