* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.5rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: gold;
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
  user-select: none;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-menu li a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
  color: gold;
  outline: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 25px;
  height: 3px;
  background-color: #fff;
  display: block;
  border-radius: 3px;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 60px; 
    right: 0;
    background-color: #000;
    width: 200px;
    height: calc(100vh - 60px);
    flex-direction: column;
    gap: 0;
    padding-top: 1rem;
    border-left: 1px solid #333;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
  }

  .nav-menu li {
    border-bottom: 1px solid #333;
  }

  .nav-menu li a {
    padding: 1rem 1.5rem;
    color: #000;
  }

  .nav-menu.nav-menu_visible {
    transform: translateX(0);
  }
}

h1.display-4 {
  font-weight: 700;
  color: #222;
}

hr.w-25 {
  border: 2px solid gold;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.lead {
  font-size: 1.25rem;
  color: #444;
}

.card-header.bg-primary {
  background-color: #007bff !important;
}

.card-header.bg-success {
  background-color: #28a745 !important;
}

.col-md-4.text-center h3 {
  font-size: 45px;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #222;
}

.col-md-5 p {
  margin-bottom: 0.5rem;
  color: #333;
}

.col-md-5 p[style] {
  font-weight: 600;
  font-size: 25px;
}

footer {
  background-color: #f8f9fa;
  color: #666;
  color: #000;
  padding: 2rem; 
  border-radius: 0.5rem; 
  font-size: 0.9rem;
}

iframe {
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

a:focus {
  outline: 2px solid gold;
  outline-offset: 2px;
}
a {
    color: inherit;
    align-items: start;
    text-decoration: none;
}
.medsos {
    align-items: start;
}
.medsos ul li {
    display: inline-block;
    align-items: start;
    color: violet;
    margin-right: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 20px;
}
