/* Bendrai */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #111;
  color: #fff;
  padding: 20px 0;
}

.logo {
  float: left;
  font-size: 24px;
  font-weight: bold;
}

nav {
  float: right;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
}

header::after {
  content: "";
  display: block;
  clear: both;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #141e30, #243b55);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 30px;
  background: #ff5a5f;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
}

/* About */
.about {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

/* Videos */
.videos {
  padding: 60px 20px;
  background: #eee;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.video-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}

.video-thumbnail {
  background: #ccc;
  height: 140px;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}


/* Footer */
footer {
  background: #000;
  color: #ccc;
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.footer-grid h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-grid p,
.footer-grid ul {
  font-size: 14px;
  line-height: 1.6;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-grid a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-grid a:hover {
  color: #fff;
}

footer .container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

footer .copyright {
  text-align: center;
  font-size: 13px;
  color: #666;
  border-top: 1px solid #222;
  padding-top: 15px;
  margin-top: 30px;
}
