/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Global Styles */
body {
  font-family: "Arial", sans-serif;
  background-color: #eef1f7;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(135deg, #3b5998, #8b9dc3);
  color: white;
  text-align: center;
  padding: 20px;
}

header h1 {
  font-size: 2em;
  margin: 0;
}

/* Main Container */
.container {
  max-width: 960px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* About Section */
#about {
  text-align: center;
  padding: 20px;
}

#about h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #3b5998;
}

#about p {
  font-size: 1.1em;
  color: #555;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: justify;
}

#about img {
  width: 200px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Quote Section */
#quote {
  text-align: center;
  font-style: italic;
  background: #f5f5f5;
  padding: 20px;
  border-left: 5px solid #3b5998;
  margin: 20px auto;
  width: 80%;
  border-radius: 8px;
}

#quote p {
  font-size: 1.2em;
  color: #555;
}

/* Navigation Section */
#navigation {
  text-align: center;
  margin: 20px 0;
}

button {
  background-color: #3b5998;
  color: #fff;
  border: none;
  padding: 12px 24px;
  margin: 10px;
  border-radius: 50px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #2d4373;
}

/* Footer */
footer {
  background-color: #3b5998;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
}

footer a {
  display: inline-block;
  margin: 0 10px;
  transition: transform 0.3s;
}

footer a img {
  width: 30px;
  height: 30px;
}

footer a:hover img {
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 15px;
    font-size: 1.2em;
  }
  
  .container {
    margin: 10px;
    max-width: 95%;
    padding: 15px;
  }
  
  button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

#video {
  text-align: center;
  margin: 20px auto;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: auto;
}

.video-container iframe {
  width: 100%;
  height: 315px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}




