/* style.css */

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #ffffff, #f0f3f7);
  color: #333;
}

header {
  position: relative;
  text-align: center;
  background: #ffffff;
  color: white;
  padding: 1rem 1rem;
}

img.logo {
  max-width: 240px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
  background-color: transparent;
  padding: 0;
}

h1 {
  font-size: 3rem;
  margin: 0.5rem 0;
}

p.subtitle {
  font-size: 1.4rem;
  color: #e67e22;
  font-weight: bold;
}

section {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 2rem;
}

section h2 {
  font-size: 2rem;
  color: #e67e22;
  margin-bottom: 1rem;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin: 3rem 0;
  gap: 2rem;
}

.split-section img {
  flex: 0 1 40%;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.split-text {
  flex: 1 1 50%;
  min-width: 280px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li::before {
  content: "✔️ ";
  color: #e67e22;
}

.contact {
  text-align: center;
  background: #ffffff;
  padding: 3rem 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.contact a.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: #e67e22;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.contact a.button:hover {
  background: #cf711c;
}

footer {
  background: #f0f0f0;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #666;
  margin-top: 4rem;
}
