/* Featured Discussions Section */
.featured-section {
  margin: 60px auto;
  text-align: center;
}

.featured-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #333;
}

.featured-videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.video-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
  position: relative;
  height: 200px;
  background-color: #eee;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumbnail a {
  display: block;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 48px;
  opacity: 0.9;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-thumbnail:hover .play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.video-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.watch-button {
  display: block;
  background-color: #4caf50;
  color: white;
  padding: 10px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  align-self: stretch;
  text-align: center;
}

.watch-button:hover {
  background-color: #3d8b40;
}

@media (max-width: 992px) {
  .featured-videos {
    gap: 20px;
  }

  .video-card {
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .featured-videos {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .video-card {
    max-width: 350px;
  }
}

/* Page specific styles */
body {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  color: #333;
}

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

/* Header Styles */
header {
  background: #ffffff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-left {
  text-align: left;
}

header h1 {
  margin: 0;
  font-size: 2rem;
  color: #333;
}

header .subtitle {
  margin: 5px 0 0;
  font-weight: normal;
  color: #666;
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

nav li {
  margin-left: 30px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #4caf50;
}

/* Navigation CTA button */
nav .cta-button {
  background-color: #00cc99;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background-color: #00b388;
  color: #ffffff;
}

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

  .header-left {
    text-align: center;
    margin-bottom: 20px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav li {
    margin: 5px 15px;
  }
}

/* Old header styles - keeping for reference */
.header {
  background: #ffffff;
  padding: 60px 20px;
  margin-bottom: 40px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #444;
}

h1 {
  color: #333;
  margin: 0 0 15px 0;
  font-size: 2.5rem;
  font-weight: 700;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #555;
  font-weight: 600;
}

.main-title {
  font-size: 2.5rem;
  margin: 30px 0;
  color: #333;
  font-weight: 700;
  text-align: center;
}

p {
  margin-bottom: 30px;
  font-size: 1rem;
}

.description {
  max-width: 600px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.form-container {
  max-width: 500px;
  margin: 0 auto 60px auto;
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Custom styled button */
.primary {
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
}

.primary:hover {
  background-color: #3d8b40;
  transform: translateY(-2px);
}

.privacy-note {
  font-size: 12px;
  color: #777;
  margin-top: 15px;
  text-align: center;
}

footer {
  margin-top: 50px;
  padding: 20px 0;
  font-size: 14px;
  color: #777;
}

footer a {
  color: #555;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Show More Button */
.show-more-container {
  margin: 40px auto 0;
  text-align: center;
}

.show-more-button {
  display: inline-block;
  background-color: transparent;
  color: #555;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid #ccc;
  transition: background-color 0.3s ease, transform 0.2s ease,
    border-color 0.3s ease;
}

.show-more-button:hover {
  background-color: #f5f5f5;
  border-color: #999;
  transform: translateY(-2px);
}
