.contact-section {
  padding: 50px 20px;
  background: #f8f8f8;
  color: #333;
  font-family: Arial, sans-serif;
}

.contact-container {
  max-width: 1000px;
  margin: auto;
}

.contact-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-section p {
  margin-bottom: 20px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

#contactForm {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#contactForm input,
#contactForm textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

#contactForm button {
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

#contactForm button:hover {
  background: #444;
}

.contact-info {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  margin-bottom: 15px;
}

.contact-info a {
  color: #000;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}

/* Newsletter */
.newsletter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
}
.newsletter-popup {
    color: #fff;
  }
  
.newsletter h2 {
    color: #3033d6ee;
    font-size: 20px;
  }
  
.newsletter p {
    font-size: 12px;
    margin: 10px 0px;
    color: #ccc;
  }
  
.newsletter form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
  }
  
.newsletter input[type="email"] {
    padding: 10px 7px;
    border: none;
    width: 100%;
    font-size: 14px;
  }
  
.newsletter button[type="submit"] {
    border: none;
    background-color: #3033d6ee;
    color: white;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
    padding: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
.newsletter button[type="submit"]:hover {
    background-color: #3182ce;
  }
.newsletter button[type="submit"]:active {
    transform: scale(0.9);
}

@media (max-width: 768px) {
    .newsletter {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
}