* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #fff;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1f2b;
  padding: 1rem 2rem;
}

header .logo {
  font-size: 1.5rem;
  color: #1a73e8;
  font-weight: bold;
}

header nav a {
  color: #fff;
  margin-left: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

header nav a:hover {
  color: #1a73e8;
}

.hero {
  background: url('https://tse2.mm.bing.net/th/id/OIP.1I7zvGzj7nPXvMzikliT_wAAAA?rs=1&pid=ImgDetMain&o=7&rm=3') center/cover no-repeat;
  text-align: center;
  padding: 5rem 1rem;
  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
}

.hero p {
  font-size: 1.3rem;
  color: #ccc;
}

section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.card {
  background-color: #1a1f2b;
  padding: 2rem;
  border-radius: 8px;
  flex: 1;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input, .contact textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  background: #222;
  color: #fff;
}

.contact button {
  background: #1a73e8;
  color: #fff;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact button:hover {
  background: #125bb5;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.wrapper {
  flex: 1;
}

footer {
  background: #1a1f2b;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}


.news .news-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.news .card {
  background-color: #1a1f2b;
  padding: 1.5rem;
  border-radius: 8px;
  flex: 1;
  min-width: 250px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}

.news .card:hover {
  transform: translateY(-5px);
}

.news .card h3 {
  margin-bottom: 0.8rem;
  color: #1a73e8;
}

footer2 {
  background: #1a1f2b;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #888;

  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.license-item {
  background: linear-gradient(135deg, #1a2029, #09195e);
  border-left: 6px solid #1a73e8;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.license-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.license-item h3 {
  margin-top: 0;
  color: #1a73e8;
  font-size: 1.4rem;
  font-weight: 600;
  border-bottom: 2px solid #d1dce9;
  padding-bottom: 6px;
  margin-bottom: 12px;
}
