body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #222;
  border-color: #ffffff;
  border-radius: 2px;
}
  
header {
  background: transparent;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #e0e0e0;
}

  
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 20px;
}

.logo-img {
  width: 150px;
  height: 60px;
  object-fit: contain;
  padding: 2px;
  
}

nav a {
  margin: 0 8px;
  padding: 6px 14px;
  text-decoration: none;
  color: #222;
  font-size: 15px;
  
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  font-size: 15px;
  color: #222;
  font-weight: bold;
  margin-right: 10px;
 text-decoration: none;   
}
.header-phone:hover {
  color: #e62222;
  text-decoration: underline;
}

.login-btn {
  background: #333;
  color: #fff;
  border-radius: 20px;
  padding: 8px 22px;
  font-weight: bold;
  font-size: 15px;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
  text-decoration: none;
}
.login-btn:hover {
  background: #555;
  color: #fff;
}
.profil-img {
    width: 28px;
    height: 28px;
  }

footer {
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 40px 0 20px 0;
    width: 100%;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }
  .footer-logo {
    min-width: 160px;
  }
  .footer-logo div {
    margin-bottom: 8px;
  }
  .footer-links {
    display: flex;
    gap: 40px;
  }
  .footer-links > div {
    min-width: 120px;
  }
  .footer-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px !important;
  }
  .footer-links a, .footer-title {
    display: block;
    
    margin-bottom: 6px;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    color: #222;
    font-size: 14px;
  }
  .footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: "FontAwesome", Arial, sans-serif;
    font-size: 22px;
  }
  .footer-social a {
    color: #222;
    text-decoration: none;
  }
  
  .social-icon {
    width: 24px;
    height: 24px;
    margin: 0 8px;
    vertical-align: middle;
  }
  
  .footer-contact-link {
    color: #333;
    font-weight: bold;
    text-decoration: none;
    margin-left: 8px;
    transition: color 0.2s;
  }
  .footer-contact-link:hover {
    color: #e62222;
    text-decoration: underline;
  }
  
      