/* ===== Import Roboto Font ===== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* ===== Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #333;
  overflow-x: hidden;
}

/* ===== Container Consistency ===== */
.container {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

/* ===== Section Spacing ===== */
section {
  padding: 60px 0;
}

/* ===== Headings ===== */
h1, h2 {
  color: #24969e;
  font-weight: 700;
  margin-bottom: 20px;
}

h3, h4 {
  color: #0061c5;
  font-weight: 600;
  margin-bottom: 18px;
}

h5, h6 {
  color: #5ddea2;
  font-weight: 500;
  margin-bottom: 15px;
}

/* ===== Paragraphs ===== */
p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #555;
}

/* ===== Anchor Tags ===== */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  color: #00bfff;
}

/* ===== Navbar Adjustments ===== */
.navbar {
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0;
  border: none;
  box-shadow: none;
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}

/* ===== Buttons ===== */
.btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
}

/* ===== Utilities ===== */
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.pt-40 { padding-top: 40px; }
.pb-40 { padding-bottom: 40px; }

.text-primary {
  color: #00bfff !important;
}

/* ===== Responsive Typography ===== */
@media (max-width: 991px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }
  p  { font-size: 15px; }
}

@media (max-width: 767px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  h4 { font-size: 18px; }
  p  { font-size: 14px; }

  .btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  section {
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  h3, h4 { font-size: 18px; }
  p  { font-size: 13px; }

  .btn {
    width: 100%;
    padding: 10px;
    font-size: 15px;
  }
}
