/* General Styles */
body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background-color: #ffffff;
  color: #000000;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

h1,
h2 {
  color: #0033cc;
}

h3 {
  color: #0033cc;
  text-align: center;
}

/* Masthead */
.masthead {
  background-color: #f4f4f4;
  text-align: center;
  padding: 60px 0;
}

.masthead-heading {
  font-size: 36px;
  color: #0033cc;
  margin-bottom: 10px;
}

.masthead-subheading {
  font-size: 20px;
  color: #555;
}

/* Founder Section */
.founder-section {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.founder-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: left;
}

.founder-img {
  width: 200px;
  border-radius: 10px;
}

.founder-text {
  max-width: 500px;
}

/* YouTube and Telegram Sections */
.youtube-section,
.telegram-section {
  background-color: #ffffff;
  padding: 50px 0;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  font-size: 18px;
  margin: 10px 0;
}

.feature-list i {
  color: #0033cc;
  margin-right: 10px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 12px 20px;
  background-color: #0033cc;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
}

.btn-primary:hover {
  background-color: #0022aa;
}

/* Contact Us */
.contactus ul {
  list-style: none;
  padding: 0;
}

.contactus ul li {
  font-size: 16px;
  margin: 5px 0;
}

.contactus ul li a {
  color: #0033cc;
  text-decoration: none;
}

.contactus ul li a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .founder-content {
    flex-direction: column;
    text-align: center;
  }

  .founder-img {
    width: 150px;
  }
}
