@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ==============================
   Global / Reset Styles
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #333;
  /* Leaves space for the fixed header */
  padding-top: 60px;
}

/* A .container for consistent width if you use it in sections */
.container {
  max-width: 100vw;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utility Buttons, Section Separators, etc. */
.section-separator {
  border-top: 1px solid #ddd;
  padding-top: 50px;
}

.btn {
  cursor: pointer;
}

.btn-primary {
  background-color: #26729e;
  color: #fff;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #1e5a82;
}

.btn-secondary {
  background-color: #555;
  color: #fff;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 5px;
  transition: background 0.3s ease;
  margin-left: 10px;
}

.btn-secondary:hover {
  background-color: #333;
}

/* Responsive tweak for smaller screens */
@media (max-width: 767px) {
  .container {
    width: 95%;
  }
}
