/* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: #0b1d2a; /* Navy */
  color: #ffffff;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.site-header {
  background-color: #102b3f;
  padding: 40px 20px;
  text-align: center;
  border-bottom: 4px solid #f39c12; /* Orange accent */
}

.brand {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 400;
  color: #e0e0e0;
  margin-top: 8px;
}

/* Section Headings */
h2 {
  color: #f39c12;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Product Card */
.product-card {
  background-color: #163b56;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.level {
  font-weight: 600;
  color: #f39c12;
  margin-bottom: 12px;
}

.product-card ul {
  margin: 15px 0;
  padding-left: 20px;
}

.product-card li {
  margin-bottom: 8px;
}

/* Buttons */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.button {
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}

.button.download {
  background-color: #f39c12;
  color: #000;
}

.button.download:hover {
  background-color: #ffae2d;
}

.button.venmo {
  background-color: #3d95ce;
  color: #fff;
}

.button.venmo:hover {
  background-color: #5ab0e0;
}

/* Donation note */
.donation-note {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #dddddd;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 25px 20px;
  font-size: 0.9rem;
  background-color: #102b3f;
  margin-top: 40px;
}

/* Intro section */
.intro p {
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 600px) {
  .buttons {
    flex-direction: column;
  }
}