body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.sermon-container {
  max-width: 90%;
  margin: 50px auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 5px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 20px;
}

button {
  background-color: #4caf50;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 16px;
  margin-bottom: 10px;
}

button:hover {
  background-color: #45a049;
}

.sermon-content {
  display: none;
}

.sermon-content.active {
  display: block;
}

h2 {
  color: #333;
}

p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tabs {
    flex-direction: column;
    align-items: center;
  }

  button {
    width: 100%;
  }
}
/* Add this at the end of your existing CSS */

.profile-image {
  max-width: 100%;
  border-radius: 50px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .tabs {
    flex-direction: column;
    align-items: center;
  }

  button {
    width: 100%;
    margin-bottom: 10px;
  }
}
/* Add this at the end of your existing CSS */

/* Add this at the end of your existing CSS */

.main-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  margin-bottom: 20px;
}

.footer-section h2, .footer-section h3 {
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #3498db;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
}

.footer-bottom a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #3498db;
}

/* Add this at the end of your existing CSS */

.footer-section a img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.footer-section a:last-child img {
  margin-right: 0; /* Remove margin for the last image in each section */
}


