/* NewFAV consolidated styles for Bootstrap Studio import
   All original per-page <style> blocks merged here.
   You can keep authoring in this single stylesheet. */

:root {
  --primary-color: #5D5FEF;
  --secondary-color: #7C7EF7;
  --accent-color: #FFB800;
  --text-dark: #1C1E53;
  --text-light: #6B7385;
  --bg-light: #F4F6FC;
  --bg-ultra-light: #FAFBFF;
  --success-color: #00D563;
  --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
  --text-menu: rgba(0,0,0,0.65);
}

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

body {
  /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */
  background: var(--bg-ultra-light);
  color: var(--text-dark);
}

/* Navigation */

.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  /*padding: 1rem 0;*/
  
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-menu);
}
.navbar-toggler {
	margin-top:25px;
	margin-bottom:20px
}
.navbar-brand span {
  color: var(--primary-color);
}

.nav-link {
  color: var(--text-menu);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-color);
}

.btn-sign-in {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-sign-in:hover {
  background: var(--primary-color);
  color: white;
}

.btn-sign-up {
  background: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  margin-left: 0.5rem;
  transition: all 0.3s;
}

.btn-sign-up:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Hero Section */

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #F4F6FC 0%, #FAFBFF 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(93, 95, 239, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-badge {
  display: inline-block;
  background: #E8F8F0;
  color: var(--success-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.search-container {
  background: white;
  border-radius: 60px;
  padding: 0.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  max-width: 600px;
}

.search-input {
  border: none;
  outline: none;
  padding: 0.8rem 1.5rem;
  flex: 1;
  font-size: 1rem;
}

.search-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.search-btn:hover {
  background: var(--secondary-color);
}

.hero-tags {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.tag-item {
  background: white;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.tag-item:hover {
  transform: translateY(-3px);
}

.tag-icon {
  width: 24px;
  height: 24px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.stat-card {
  position: absolute;
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
}

.stat-card-1 {
  top: 20%;
  right: -30px;
  min-width: 180px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Partners Section */

.partners-section {
  padding: 3rem 0;
  background: white;
}

.partners-title {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-logo {
  color: #CBD5E0;
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.partner-logo:hover {
  opacity: 1;
}

/* Values/Courses Section */

.courses-section {
  padding: 5rem 0;
  background: var(--bg-ultra-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
}

.explore-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.explore-link:hover {
  gap: 1rem;
}

.course-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.course-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  position: relative;
}

.course-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: white;
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.course-content {
  padding: 1.5rem;
}

.course-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.course-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #F0F0F0;
}

.course-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.course-stats {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.stars {
  color: var(--accent-color);
}

.students-count {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Features Section */

.features-section {
  padding: 5rem 0;
  background: white;
}

.feature-box {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--bs-body-bg);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(93, 95, 239, 0.1), rgba(93, 95, 239, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* CTA Section */

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
  border-radius: 30px;
  margin: 3rem 0;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-cta {
  background: white;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */

footer {
  background: var(--text-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  margin-bottom: 3rem;
}

.footer-brand {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.footer-links h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  line-height: 2;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.6);
}

/* Responsive */

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .stat-card-1 {
    display: none;
  }
}

@media (max-width: 768px) {
  .course-card {
    margin-bottom: 2rem;
  }
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 120px 0 24px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 82px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FAFBFF" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,176C1248,192,1344,192,1392,192L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  pointer-events: none;
  display: none !important;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
  margin-bottom: 0;
}

.breadcrumb-item {
  color: rgba(255,255,255,0.8);
}

.breadcrumb-item.active {
  color: white;
}

/* Featured Post */

.featured-section {
  padding: 80px 0;
  background: white;
}

.featured-post {
  background: linear-gradient(135deg, var(--bg-light), white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.featured-image {
  height: 450px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

.featured-content {
  padding: 3rem;
}

.blog-category {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.featured-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.featured-excerpt {
  color: var(--text-light);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.author-details h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.author-details p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.post-meta {
  display: flex;
  gap: 2rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.btn-read {
  background: var(--primary-color);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 1.5rem;
  transition: all 0.3s;
}

.btn-read:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

/* Blog Grid */

.blog-section {
  padding: 80px 0;
  background: var(--bg-ultra-light);
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.widget-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bg-light);
}

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

.category-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid #E5E5E5;
  transition: all 0.3s;
}

.category-item:last-child {
  border-bottom: none;
}

.category-link {
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.category-link:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.category-count {
  background: var(--bg-light);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Blog Card */

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.blog-image {
  height: 250px;
  background: linear-gradient(135deg, var(--secondary-color), var(--bg-ultra-light));
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-excerpt {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #E5E5E5;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mini-avatar {
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Popular Posts */

.popular-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E5E5E5;
}

.popular-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.popular-number {
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.popular-content h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.popular-content a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.popular-content a:hover {
  color: var(--primary-color);
}

.popular-meta {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Tags Widget */

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.4rem 1rem;
  background: var(--bg-light);
  border: 1px solid #E5E5E5;
  border-radius: 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.tag:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Newsletter Widget */

.newsletter-widget {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
}

.newsletter-widget .widget-title {
  color: white;
  border-bottom: 2px solid rgba(255,255,255,0.2);
}

.newsletter-description {
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.newsletter-input {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  color: white;
  margin-bottom: 1rem;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.7);
}

.btn-subscribe-widget {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.btn-subscribe-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Pagination */

.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  gap: 0.5rem;
}

.page-link {
  padding: 0.8rem 1.2rem;
  background: white;
  border: 2px solid #E5E5E5;
  border-radius: 10px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.page-link:hover, .page-link.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Author Bio Section */

.author-bio {
  background: white;
  padding: 1rem;
  border-radius: 15px;
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--card-shadow);
}

.author-bio-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 600;
  flex-shrink: 0;
}

.author-bio-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.author-bio-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.author-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 35px;
  height: 35px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
}

/* ===== From contact-page.html ===== */


/* Contact Section */

.contact-section {
  padding: 80px 0;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s;
}

.info-card:hover {
  transform: translateY(-10px);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(93, 95, 239, 0.1), rgba(93, 95, 239, 0.05));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0 auto 1.5rem;
}

.info-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.info-content {
  color: var(--text-light);
  line-height: 1.6;
}

.info-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.info-content a:hover {
  color: var(--secondary-color);
}

/* Contact Form */

.contact-form-section {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border: 2px solid #E5E5E5;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(93, 95, 239, 0.1);
}

.form-select {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border: 2px solid #E5E5E5;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s;
  background: white;
}

.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(93, 95, 239, 0.1);
}

.btn-submit {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.btn-submit:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(93, 95, 239, 0.3);
}

/* Map Section */

.map-section {
  background: white;
  padding: 80px 0;
}

.office-locations {
  margin-top: 3rem;
}

.office-card {
  background: var(--bg-ultra-light);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: transform 0.3s;
}

.office-card:hover {
  transform: translateX(10px);
}

.office-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.office-details {
  color: var(--text-light);
  line-height: 1.8;
}

.office-details i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  width: 20px;
}

/* FAQ Section */

.faq-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.accordion-item {
  background: white;
  border: none;
  margin-bottom: 1rem;
  border-radius: 15px !important;
  overflow: hidden;
}

.accordion-button {
  background: white;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.5rem;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: var(--bg-ultra-light);
  color: var(--primary-color);
}

.accordion-button::after {
  background-image: none;
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s;
}

.accordion-button:not(.collapsed)::after {
  content: '−';
  transform: rotate(0);
}

.accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Partners Grid */

.partners-section {
  padding: 80px 0;
  background: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.partner-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-ultra-light);
  border-radius: 15px;
  transition: all 0.3s;
}

.partner-card:hover {
  background: white;
  box-shadow: var(--card-shadow);
  transform: translateY(-5px);
}

.partner-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.partner-name {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Social Links */

.social-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 60px 0;
  text-align: center;
  color: white;
}

.social-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.social-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-5px);
}

/* Map Placeholder */

.map-container {
  height: 400px;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-ultra-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-bottom: 3rem;
}

/* Response Message */

.response-message {
  display: none;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.response-message.success {
  background: rgba(0, 213, 99, 0.1);
  color: var(--success-color);
  border: 1px solid var(--success-color);
}

.response-message.error {
  background: rgba(255, 92, 92, 0.1);
  color: #FF5C5C;
  border: 1px solid #FF5C5C;
}

/* Featured Event */

.featured-section {
  padding: 80px 0;
  background: white;
}

.featured-event {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px;
  padding: 3rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.featured-event::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.featured-badge {
  display: inline-block;
  background: white;
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.featured-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.featured-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.event-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.event-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.event-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-register-featured {
  background: white;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.btn-register-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Event Filters */

.filters-section {
  padding: 40px 0;
  background: white;
  border-bottom: 1px solid #E5E5E5;
}

.filter-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

.filter-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.filter-select {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #E5E5E5;
  border-radius: 10px;
  background: white;
  transition: border-color 0.3s;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.filter-tabs {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.filter-tab {
  padding: 0.6rem 1.5rem;
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 25px;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-tab.active {
  background: var(--primary-color);
  color: white;
}

.filter-tab:hover {
  border-color: var(--primary-color);
}

/* Events Grid */

.events-section {
  padding: 80px 0;
  background: var(--bg-ultra-light);
}

.event-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.event-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--bg-light), white);
  border-bottom: 1px solid #E5E5E5;
}

.event-date-box {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.8rem;
  border-radius: 10px;
  text-align: center;
  min-width: 60px;
}

.event-month {
  font-size: 0.8rem;
  text-transform: uppercase;
  opacity: 0.9;
}

.event-day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-type {
  display: inline-block;
  background: var(--accent-color);
  color: var(--text-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 1rem;
}

.event-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.event-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.event-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #E5E5E5;
}

.event-spots {
  color: var(--success-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.event-spots.limited {
  color: var(--danger-color);
}

.btn-register {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-register:hover {
  background: var(--secondary-color);
  color: white;
}

/* Calendar View */

.calendar-section {
  padding: 80px 0;
  background: white;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.calendar-nav {
  display: flex;
  gap: 1rem;
}

.calendar-btn {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s;
}

.calendar-btn:hover {
  background: var(--primary-color);
  color: white;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #E5E5E5;
  border: 1px solid #E5E5E5;
  border-radius: 15px;
  overflow: hidden;
}

.calendar-day {
  background: white;
  padding: 1rem;
  min-height: 100px;
  position: relative;
}

.calendar-day-header {
  background: var(--bg-light);
  padding: 0.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
}

.calendar-day-number {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.calendar-day.other-month {
  background: var(--bg-ultra-light);
}

.calendar-day.other-month .calendar-day-number {
  color: var(--text-light);
}

.calendar-event {
  background: var(--primary-color);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  font-size: 0.75rem;
  margin-bottom: 0.2rem;
  cursor: pointer;
  transition: background 0.3s;
}

.calendar-event:hover {
  background: var(--secondary-color);
}

/* Past Events */

.past-events-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.past-event-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s;
}

.past-event-card:hover {
  transform: translateX(10px);
  box-shadow: var(--card-shadow);
}

.past-event-image {
  width: 150px;
  height: 100px;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-ultra-light));
  border-radius: 10px;
  flex-shrink: 0;
}

.past-event-content {
  flex: 1;
}

.past-event-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.past-event-meta {
  display: flex;
  gap: 2rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.btn-view-materials {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.btn-view-materials:hover {
  gap: 1rem;
}

/* Become a Promoter CTA */

.promoter-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 80px 0;
  color: white;
  text-align: center;
}

.promoter-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.promoter-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.promoter-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.btn-become-promoter {
  background: white;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-become-promoter:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Event Status Badges */

.status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.live {
  background: var(--danger-color);
  color: white;
  animation: pulse 2s infinite;
}

.status-badge.upcoming {
  background: var(--success-color);
  color: white;
}

.status-badge.sold-out {
  background: var(--text-light);
  color: white;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

/* Dashboard Section */

.dashboard-section {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.stat-icon.success {
  background: rgba(0, 213, 99, 0.1);
  color: var(--success-color);
}

.stat-icon.warning {
  background: rgba(255, 184, 0, 0.1);
  color: var(--warning-color);
}

.stat-icon.primary {
  background: rgba(93, 95, 239, 0.1);
  color: var(--primary-color);
}

.stat-icon.danger {
  background: rgba(255, 92, 92, 0.1);
  color: var(--danger-color);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-size: 1rem;
}

.stat-change {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.stat-change.positive {
  color: var(--success-color);
}

.stat-change.negative {
  color: var(--danger-color);
}

/* Progress Charts */

.chart-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  margin-bottom: 2rem;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.chart-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.chart-filters {
  display: flex;
  gap: 1rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #E5E5E5;
  background: white;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Progress Bars */

.progress-item {
  margin-bottom: 2rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.progress-label {
  font-weight: 600;
  color: var(--text-dark);
}

.progress-value {
  color: var(--primary-color);
  font-weight: 600;
}

.progress {
  height: 10px;
  border-radius: 10px;
  background: var(--bg-light);
}

.progress-bar {
  border-radius: 10px;
  transition: width 1s ease-in-out;
}

/* Monitoring Tools */

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tool-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
}

.tool-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
}

.tool-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(93, 95, 239, 0.1), rgba(93, 95, 239, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
}

.tool-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.tool-description {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.btn-access {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-access:hover {
  background: var(--secondary-color);
  color: white;
}

/* Reports Section */

.reports-section {
  background: white;
  padding: 80px 0;
}

.report-list {
  margin-top: 3rem;
}

.report-item {
  background: var(--bg-ultra-light);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.report-item:hover {
  background: var(--bg-light);
  transform: translateX(10px);
}

.report-info {
  flex: 1;
}

.report-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.report-meta {
  display: flex;
  gap: 2rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.report-action {
  display: flex;
  gap: 1rem;
}

.btn-view, .btn-download {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-view {
  background: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-view:hover {
  background: var(--primary-color);
  color: white;
}

.btn-download {
  background: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
}

.btn-download:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Country Map */

.map-container {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  margin-top: 3rem;
}

.map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-ultra-light));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.map-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}


/* Breaking News Banner */

.breaking-news {
  background: #7f8cbf;
  color: white;
  padding: 1rem 0;
  position: relative;
  overflow: hidden;
}

.breaking-label {
  background: white;
  color: var(--secondary-color);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  margin-right: 1rem;
  display: inline-block;
}

.breaking-text {
  animation: scroll-left 20s linear infinite;
  white-space: nowrap;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Featured News */

.featured-news {
  padding: 80px 0;
  background: white;
}

.featured-article {
  background: linear-gradient(135deg, var(--bg-light), white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s;
}

.featured-article:hover {
  transform: translateY(-10px);
}

.featured-image {
  height: 400px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

.featured-content {
  padding: 2rem;
}

.news-category {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.featured-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.featured-excerpt {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.article-meta {
  display: flex;
  gap: 2rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.article-meta i {
  color: var(--bs-white);
  margin-right: 0.3rem;
}

/* News Grid */

.news-grid-section {
  padding: 80px 0;
  background: var(--bg-ultra-light);
}

.filter-bar {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.filter-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.2rem;
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 20px;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.filter-btn.active {
  background: var(--primary-color);
  color: white;
}

.filter-btn:hover {
  border-color: var(--primary-color);
}

.news-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.news-image {
  height: 200px;
  background: linear-gradient(135deg, var(--secondary-color), var(--bg-ultra-light));
  position: relative;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-date-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  padding: 0.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.date-day {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.date-month {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.news-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.news-excerpt {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #E5E5E5;
}

.news-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.author-avatar {
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.3s;
}

.read-more:hover {
  gap: 0.6rem;
}

/* Press Releases */

.press-section {
  padding: 80px 0;
  background: white;
}

.press-release {
  background: var(--bg-ultra-light);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.press-release:hover {
  transform: translateX(10px);
  box-shadow: var(--card-shadow);
}

.press-date {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.press-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.press-org {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Newsletter Subscribe */

.newsletter-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 60px 0;
  color: white;
}

.newsletter-content {
  text-align: center;
}

.newsletter-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.8rem 1.5rem;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  border-radius: 25px;
  color: white;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.7);
}

.btn-subscribe {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Archive Section */

.archive-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.archive-nav {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.year-selector {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.year-btn {
  padding: 0.5rem 1rem;
  background: var(--bg-light);
  border: none;
  border-radius: 10px;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.year-btn.active {
  background: var(--primary-color);
  color: white;
}

.month-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.5rem;
}

.month-link {
  padding: 0.5rem;
  text-align: center;
  background: var(--bg-ultra-light);
  border-radius: 8px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s;
}

.month-link:hover {
  background: var(--primary-color);
  color: white;
}

/* Pagination */

.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.pagination {
  display: flex;
  gap: 0.5rem;
}

.page-link {
  padding: 0.6rem 1rem;
  background: white;
  border: 2px solid #E5E5E5;
  border-radius: 10px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s;
}

.page-link:hover, .page-link.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Search and Filter Section */

.search-filter-section {
  padding: 3rem 0;
  background: white;
  border-bottom: 1px solid #E5E5E5;
}

.search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.search-input {
  width: 100%;
  padding: 1rem 3rem 1rem 1.5rem;
  border: 2px solid #E5E5E5;
  border-radius: 50px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.6rem 1.5rem;
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 25px;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-tab.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.filter-tab:hover {
  border-color: var(--primary-color);
}

/* Resources Grid */

.resources-section {
  padding: 80px 0;
}

.resource-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.resource-header {
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-light), white);
  position: relative;
}

.resource-type {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--primary-color);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.resource-type.policy {
  background: var(--secondary-color);
}

.resource-type.research {
  background: var(--accent-color);
}

.resource-type.learning {
  background: var(--success-color);
}

.resource-type.promotional {
  background: #FF5C5C;
}

.resource-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.resource-content {
  padding: 1.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.resource-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.resource-description {
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

.resource-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #E5E5E5;
  font-size: 0.9rem;
  color: var(--text-light);
}

.resource-action {
  padding: 1.5rem 2rem;
  background: var(--bg-ultra-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-download {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-download:hover {
  background: var(--secondary-color);
  color: white;
}

.btn-view {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.btn-view:hover {
  gap: 1rem;
}

/* Featured Resources */

.featured-section {
  background: white;
  padding: 80px 0;
}

.featured-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 3rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.featured-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.featured-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.featured-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-featured {
  background: white;
  color: var(--primary-color);
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* AI Resources Section */

.ai-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-ultra-light));
}

.ai-tool-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  border: 2px solid transparent;
}

.ai-tool-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
}

.ai-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(93, 95, 239, 0.1), rgba(93, 95, 239, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
}

.ai-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.ai-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.btn-try {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-try:hover {
  background: var(--secondary-color);
  color: white;
}

/* Newsletter Section */

.newsletter-section {
  background: var(--text-dark);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.newsletter-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.newsletter-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.8rem 1.5rem;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  border-radius: 25px;
  color: white;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.6);
}

.btn-subscribe {
  background: var(--accent-color);
  color: var(--text-dark);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-subscribe:hover {
  background: #FFC933;
}

/* Values Detail Section */

.values-detail {
  padding: 80px 0;
}

.value-detail-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.value-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.value-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.value-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.value-content {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.value-aspects {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 15px;
}

.aspect-item {
  display: flex;
  align-items: start;
  margin-bottom: 1.5rem;
}

.aspect-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-right: 1rem;
  flex-shrink: 0;
}

.aspect-content h5 {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.aspect-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Implementation Guide */

.implementation-section {
  background: white;
  padding: 80px 0;
}

.guide-card {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s;
}

.guide-card:hover {
  transform: translateY(-10px);
}

.guide-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(93, 95, 239, 0.1), rgba(93, 95, 239, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
}

/* Resources Section */

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.resource-card {
  background: white;
  padding: 0.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.resource-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
}

.resource-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.btn-download {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.3s;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.btn-download:hover {
  background: var(--secondary-color);
  color: white;
}

/* Footer */

footer {
  background: var(--text-dark);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 80px;
}



/* Featured Video */

.featured-section {
  padding: 80px 0;
  background: white;
}

.featured-video {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.video-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(93, 95, 239, 0.9), rgba(124, 126, 247, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.video-placeholder:hover {
  background: linear-gradient(135deg, rgba(93, 95, 239, 0.95), rgba(124, 126, 247, 0.95));
}

.play-button {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.video-placeholder:hover .play-button {
  transform: scale(1.1);
}

.featured-info {
  padding: 2rem;
  background: white;
}

.featured-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--text-dark);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.featured-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.featured-description {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.featured-meta {
  display: flex;
  gap: 2rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Video Categories */

.categories-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.category-tab {
  padding: 0.8rem 1.5rem;
  background: white;
  border: 2px solid transparent;
  border-radius: 25px;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.category-tab.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.category-tab:hover {
  border-color: var(--primary-color);
}

/* Video Grid */

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.video-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.video-thumbnail {
  position: relative;
  padding-bottom: 56.25%;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-ultra-light));
  overflow: hidden;
}

.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(93, 95, 239, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.video-card:hover .play-overlay {
  opacity: 1;
}

.play-overlay i {
  font-size: 3rem;
  color: white;
}

.video-content {
  padding: 1.5rem;
}

.video-category {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.video-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.video-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-light);
}

.video-stats {
  display: flex;
  gap: 1rem;
}

/* Playlists Section */

.playlists-section {
  padding: 80px 0;
  background: white;
}

.playlist-card {
  background: var(--bg-ultra-light);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}

.playlist-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary-color);
}

.playlist-card:hover {
  transform: translateX(10px);
  box-shadow: var(--card-shadow);
}

.playlist-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.playlist-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.playlist-description {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.playlist-info {
  display: flex;
  gap: 2rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.btn-playlist {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: background 0.3s;
}

.btn-playlist:hover {
  background: var(--secondary-color);
  color: white;
}

/* Webinars Section */

.webinars-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.webinar-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  position: relative;
  margin-bottom: 2rem;
}

.webinar-live {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--danger-color, #FF5C5C);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.webinar-upcoming {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--success-color);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.webinar-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.webinar-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.webinar-speaker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.speaker-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.speaker-info h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.speaker-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.btn-register {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-register:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

.quiz-container {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 600px;
  width: 100%;
  margin: auto;
}

.quiz-header {
  text-align: center;
  margin-bottom: 30px;
}

.question {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.options {
  display: grid;
  gap: 10px;
}

.option {
  background-color: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option:hover {
  background-color: #e9ecef;
}

.option.selected {
  background-color: #cfe2ff;
  border-color: #0d6efd;
}

.option.correct {
  background-color: #d4edda;
  border-color: #28a745;
}

.option.incorrect {
  background-color: #f8d7da;
  border-color: #dc3545;
}

.quiz-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.timer {
  font-size: 1.2rem;
  font-weight: bold;
}

.progress {
  height: 10px;
  margin-bottom: 20px;
}

.results {
  text-align: center;
}

.result-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.score {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.see-more {
  text-decoration: none;
  cursor: pointer;
}

.see-more::after {
  content: " ▸";
  display: inline-block;
  transition: transform .2s;
}

.see-more[aria-expanded="true"]::after {
  transform: rotate(90deg);
}

.content-section {
}

.policy-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s;
}

.material-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s;
}

.publication-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: left;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s;
}

.partner-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: left;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s;
}

.policy-card:hover {
  transform: translateY(-10px);
}

.publication-card:hover {
  transform: translateY(-10px);
}

.partner-card:hover {
  transform: translateY(-10px);
}

.material-card:hover {
  transform: translateY(-10px);
}

