@media (min-width: 550px) {
 
}

@media (min-width: 1100px) {
 
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: white; 
}



.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #2A1BA8;
}

.logo img {
  height: 100px; 
}
.ent {
  color: white;
}
.search-bar {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 50px;
  padding: 5px 15px;
}

.search-bar input {
  border: none;
  outline: none;
  width: 100%;
  background-color: transparent;
  font-size: 1em;
}

.search-bar svg {
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.user-actions { 
  color: #2A1BA8;
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-actions a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  height: 20px;
}

.user-actions svg {
  height: 20px;
}

.header-bottom {
  background-color: black;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  
  gap: 20px;
}

.nav-links a, .products-link a {
  color: white;
  text-decoration: none;
  font-weight: 400;
}

.products-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.products-link svg {
  width: 25px;
  height: 25px;
}

.button-image img {
  border: none;
  display: block; 
  width: 100px; 
  height: 100px; 
}
.button-image img:hover {
  opacity: 0.8; 
  cursor: pointer; 
}


.contact-page {
  padding: 60px 20px;
  background-color: white;
  color: #fff; 
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #000; 
}

.contact-container h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 10px;
}

.contact-container p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.contact-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-form {
  flex: 2;
  display: flex;
  flex-direction: column;
  min-width: 300px;
}

.contact-form label {
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box; 
}

.contact-form textarea {
  resize: vertical; 
}

.submit-button {
  background-color: #1a237e;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: 600;
  margin-top: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #0d1252;
}

.contact-info {
  flex: 1;
  min-width: 250px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.contact-info h3 {
  color: #1a237e;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.contact-info p {
  text-align: left;
  margin: 10px 0;
  color: #000;
}



.footer {
  background-color: #000;
  color: white;
  padding: 40px 20px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  margin: 20px;
  text-align: left;
}

.footer-section h4 {
  border-bottom: 2px solid white;
  padding-bottom: 5px;
}

.footer-section p, .footer-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-section a {
  color: white;
  text-decoration: none;
  line-height: 1.8;
}
.social-links a {
  display: inline-block;
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
}