:root {
  --light-gray: #f8f9fa;
  --dark-text: #212529;
  --brand-green: #4caf50;
  --border-color: #dee2e6;
}
body {
  background-color: var(--light-gray);
  color: var(--dark-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
  "Helvetica Neue", Arial, sans-serif;
}
.navbar {
  border-bottom: 1px solid var(--border-color);
}
.navbar-brand img {
  max-height: 40px;
}
.main-content {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.break-card {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.break-card h1 {
  font-weight: 700;
  color: var(--dark-text);
}
.break-card .lead {
  color: #6c757d;
}
.break-card img.vacation-logo {
  max-width: 250px;
  margin: 1rem auto 2rem;
}
.social-links a {
  text-decoration: none;
  font-weight: 500;
  color: var(--brand-green);
}
.social-links a:hover {
  text-decoration: underline;
}
.features-section {
  padding-left: 2rem;
}
.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}
.feature-item img {
  width: 60px;
  height: 60px;
  margin-right: 1.5rem;
}
.feature-item h3 {
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.feature-item p {
  margin-bottom: 0;
  color: #6c757d;
}
@media (max-width: 991.98px) {
  .features-section {
    padding-left: 0;
    margin-top: 3rem;
  }
  .break-card {
    text-align: center;
  }
}