.page-news-international-conferences {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text */
  background-color: #0A2239; /* Dark blue background */
  line-height: 1.6;
}

.page-news-international-conferences .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news-international-conferences .hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #1a3a5a 100%); /* Dark blue to slightly lighter blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  border-bottom: 5px solid #FFD700;
}

.page-news-international-conferences .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-international-conferences .hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-news-international-conferences .cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news-international-conferences .cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-news-international-conferences .content-section {
  padding: 60px 0;
  background-color: #0A2239;
}

.page-news-international-conferences .article-content {
  background-color: #1a3a5a; /* Slightly lighter dark blue for article background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-news-international-conferences .section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
  text-align: center;
}

.page-news-international-conferences .sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 5px solid #FFD700;
}

.page-news-international-conferences p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-news-international-conferences ul,
.page-news-international-conferences ol {
  margin-bottom: 15px;
  padding-left: 30px;
  color: #E0E0E0;
}

.page-news-international-conferences ul li,
.page-news-international-conferences ol li {
  margin-bottom: 8px;
}

.page-news-international-conferences .article-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news-international-conferences .cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.page-news-international-conferences .cta-group .cta-button.secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-news-international-conferences .cta-group .cta-button.secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
}

.page-news-international-conferences .related-articles-section {
  padding: 60px 0;
  background-color: #0A2239;
}

.page-news-international-conferences .articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news-international-conferences .article-card {
  background-color: #1a3a5a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news-international-conferences .article-card:hover {
  transform: translateY(-5px);
}

.page-news-international-conferences .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #FFD700;
}

.page-news-international-conferences .card-title {
  font-size: 1.4em;
  color: #FFD700;
  padding: 15px 20px 10px;
  flex-grow: 1;
}

.page-news-international-conferences .card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news-international-conferences .card-title a:hover {
  color: #e6c200;
}

.page-news-international-conferences .card-excerpt {
  color: #B0B0B0;
  padding: 0 20px 15px;
  font-size: 0.95em;
}

.page-news-international-conferences .read-more {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px 20px;
  transition: color 0.3s ease;
}

.page-news-international-conferences .read-more:hover {
  color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-news-international-conferences .hero-title {
    font-size: 2.8em;
  }
  .page-news-international-conferences .hero-description {
    font-size: 1.2em;
  }
  .page-news-international-conferences .section-title {
    font-size: 2em;
  }
  .page-news-international-conferences .sub-title {
    font-size: 1.5em;
  }
  .page-news-international-conferences .article-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-news-international-conferences .hero-section {
    padding: 80px 0;
  }
  .page-news-international-conferences .hero-title {
    font-size: 2.2em;
  }
  .page-news-international-conferences .hero-description {
    font-size: 1em;
  }
  .page-news-international-conferences .section-title {
    font-size: 1.8em;
  }
  .page-news-international-conferences .sub-title {
    font-size: 1.3em;
  }
  .page-news-international-conferences .articles-grid {
    grid-template-columns: 1fr;
  }
  .page-news-international-conferences .cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-news-international-conferences .cta-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-news-international-conferences .article-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-news-international-conferences .hero-section {
    padding: 60px 0;
  }
  .page-news-international-conferences .hero-title {
    font-size: 1.8em;
  }
  .page-news-international-conferences .hero-description {
    font-size: 0.9em;
  }
  .page-news-international-conferences .cta-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 90%;
  }
  .page-news-international-conferences .section-title {
    font-size: 1.5em;
  }
  .page-news-international-conferences .sub-title {
    font-size: 1.1em;
  }
  .page-news-international-conferences .article-content {
    padding: 15px;
  }
  .page-news-international-conferences .card-title {
    font-size: 1.2em;
  }
  .page-news-international-conferences .card-excerpt {
    font-size: 0.85em;
  }
}