/* Global Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #fdfdfd;
  color: #222;
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(to right, #d0f0ff, #f5eaff);
  color: #111;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.tagline {
  font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
  font-size: 1.1rem;
  color: #444;
}

/* Navigation */
nav {
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 15px 10px;
  border-bottom: 1px solid #e2e2e2;
}

nav a {
  color: #333;
  margin: 8px 15px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #00aaff;
}

/* Sections */
section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  margin-top: 20px;
}

h2 {
  color: #111;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Video */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-top: 20px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 25px 10px;
  background: #fafafa;
  color: #555;
  font-size: 0.95rem;
  border-top: 1px solid #ddd;
  margin-top: 40px;
}

footer a {
  color: #0077cc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}