@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


.header {
    background-color: #ffffff; 
    color: #000000; 
    padding: 12px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    top: 0;
    position: fixed; 
    z-index: 10; 
    top: 0;
    left: 0;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px; 
    margin-right: 10px;
}

.site-title {
    font-size: 24px;
    font-weight: bold;
}

.site-title .red-part {
    color: #9C1C1C; 
}

.site-title .black-part {
    color: #000000;
}
 
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    color: #000000; 
    text-decoration: none;
    font-weight: medium;
    transition: color 0.3s ease; 
}

.nav-links a:hover {
    color: #DD0000; 
}

body {
    margin: 0;
    padding-top: 70px;
    font-family: "Montserrat", sans-serif;
}

html, body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
  }
  
  *, *::before, *::after {
    font-family: inherit;
  }
  
  p, span, a, li, label, input, textarea, button {
    font-weight: 400;
  }
  
  h1 { font-weight: 700; }
  h2 { font-weight: 700; }
  h3 { font-weight: 600; }
  h4, h5, h6 { font-weight: 600; }
  
  