/* css/style.css */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #f9f9f9;
  line-height: 1.6;
}

.hero {
  background: linear-gradient(135deg, #0693e3, #9b51e0);
  color: #fff;
  text-align: center;
  padding: 100px 20px 60px;
}

.hero .logo {
  width: 120px;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.2em;
  margin-top: 10px;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.info {
  background: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.contact {
  background: #f0f0f0;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.contact-form input,
.contact-form button {
  padding: 12px;
  font-size: 1em;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact-form input:focus,
.contact-form button:hover {
  border-color: #0693e3;
  outline: none;
}

.contact-form button {
  background: #0693e3;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #0670b8;
}

.footer {
  background: #222;
  color: #bbb;
  text-align: center;
  padding: 40px 20px;
}

.footer a {
  color: #bbb;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer .social {
  margin-top: 20px;
}

.footer .social a {
  font-size: 1.5em;
  margin: 0 10px;
  display: inline-block;
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 10px 40px;
  }
}