/* Global Resets and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--title-color);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

/* Buttons */
.theme-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--theme-color);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
}

.theme-btn:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* Internal Page Header Fixes */
.internal-header {
  position: relative;
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 15px;
}
.internal-header .header-lower .outer-box {
  border-top: none !important;
}
.internal-header .main-menu .navigation > li > a {
  color: #1a1a1a !important;
}
.internal-header .main-menu .navigation > li > a:hover,
.internal-header .main-menu .navigation > li.current > a {
  color: #bc0000 !important;
}
.internal-header .header-top a,
.internal-header .header-top .info-list li {
  color: #1a1a1a !important;
}
