html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Poppins', 'Inter', 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background: #f8f8f8;
}

/* Apply box-sizing globally for consistent sizing */

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


.main-wrapper {
  flex: 1;
}
/* Global Header and Navigation Styles (Desktop First) */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar {
  background: #414447;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  width: 100%;
  border-bottom: 2px solid #e3f2fd;
}

.navbar-inner {
  width: 100%;
  max-width: 1600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  flex-wrap: nowrap;
  overflow: visible;
}

.navbar-logo {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  user-select: none;
  flex-shrink: 0;
  margin-right: 20px;
  cursor: pointer;
  min-width: unset;
  display: flex;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

/* Remove default anchor underline for the logo and keep focus visible */
.navbar-logo,
.navbar-logo:link,
.navbar-logo:visited {
  text-decoration: none;
}
.navbar-logo:focus {
  outline: 2px dashed rgba(255,255,255,0.4);
  outline-offset: 4px;
}

.navbar-logo span {
  font-weight: 700;
}

.hamburger {
  display: none;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
}

.navbar-menu {
  list-style: none;
  display: flex;
  flex: none;
  justify-content: flex-end;
  align-items: center;
  gap: 10px; /* Further reduced default gap for more space */
  margin: 0;
  padding: 0;
  min-width: unset;
  flex-basis: auto;
  flex-wrap: nowrap;
  transition: none;
}

.navbar-menu li {
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
}

.navbar-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem; /* Reduced default font size for menu items */
  font-weight: 500;
  padding: 8px 10px; /* Reduced default padding for menu items */
  display: inline-block;
  transition: color 0.2s;
  position: relative;
  left: unset;
  right: unset;
  bottom: unset;
  border-radius: 2px;
}

.navbar-menu a:hover {
  color: #00bcd4;
}

.navbar-menu a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #00bcd4;
  transition: width 0.3s cubic-bezier(.4,0,.2,1);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  border-radius: 2px;
  margin: 0 10px; /* Adjusted margin for the underline */
}

.navbar-menu a:hover::after {
  width: calc(100% - 20px); /* Adjusted width for the underline */
}

.arrow {
  font-size: 0.85em;
  margin-left: 4px;
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
}

/* Desktop Dropdown Styles */
.navbar-menu .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 4px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
}

.navbar-menu .dropdown:hover .dropdown-content {
  display: block;
}

.navbar-menu .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 0.95rem;
  transition: background-color 0.2s, color 0.2s;
}

.navbar-menu .dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #00bcd4;
}

/* Mobile Navigation Styles */
@media (max-width: 1200px) {
  .navbar-inner {
    padding: 0 15px; /* Slightly reduced padding for medium screens */
    flex-wrap: wrap; /* Allow navbar content to wrap */
    justify-content: center; /* Center content when wrapped */
  }

  .navbar-menu {
    gap: 15px; /* Reduced gap for medium screens */
    flex-wrap: wrap; /* Allow menu items to wrap */
    justify-content: center; /* Center menu items when wrapped */
  }

  .navbar-menu a {
    font-size: 0.95rem; /* Slightly reduced font size for menu items */
    padding: 8px 10px; /* Adjusted padding for menu items */
  }

  .navbar-menu a::after {
    margin: 0 10px; /* Adjusted margin for the underline */
  }

  .navbar-menu a:hover::after {
    width: calc(100% - 20px); /* Adjusted width for the underline */
  }
}

@media (max-width: 1100px) {
  .navbar-logo {
    font-size: 2rem; /* Slightly reduced font size for logo */
    margin-right: 15px; /* Reduced margin for logo */
  }
}

@media (max-width: 1050px) {
  .navbar-menu {
    gap: 3px; /* Even further reduced gap for smaller medium screens */
  }

  .navbar-menu a {
    font-size: 0.75rem; /* Drastically reduced font size for menu items */
    padding: 2px 4px; /* Drastically adjusted padding for menu items */
  }

  .navbar-menu a::after {
    margin: 0 4px; /* Adjusted margin for the underline */
  }

  .navbar-menu a:hover::after {
    width: calc(100% - 8px); /* Adjusted width for the underline */
  }
}

/* Mobile Navigation Styles activated earlier to prevent overflow on devices like Nest Hub Max */
@media (max-width: 1200px) {
  .hamburger {
    display: block;
    z-index: 1001;
  }

  .navbar-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: #414447;
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
    overflow-y: auto;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu li {
    width: 100%;
  }

  .navbar-menu a {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .navbar-menu .dropdown-content {
    position: static;
    transform: none;
    margin-top: 0;
    background: #36393f;
    box-shadow: none;
    display: none;
    width: 100%;
  }

  .navbar-menu .dropdown-content.show {
    display: block;
  }

  .navbar-menu .dropdown-content a {
    color: #fff;
    padding-left: 40px;
  }
}

@media (max-width: 480px) {
  .navbar-logo {
    font-size: 1.8rem;
  }

  .navbar-inner {
    padding: 0 4%; /* More fluid padding for very small screens */
  }
}

/* Global Footer Styles */
.footer {
  background: #414447;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
}

.footer p {
  margin: 5px 0;
  font-size: 0.9rem;
}

.footer span {
  color: #00bcd4;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 15px;
  }
  .footer p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 10px;
  }
  .footer p {
    font-size: 0.8rem;
  }
}

/* Global Body and Main Wrapper Padding for Fixed Header */

/* Adjust padding for sections to account for fixed header */
.main-wrapper section {
  padding-top: 40px;
  margin-top: 0;
}

/* General Content Responsiveness */
img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* Re-adding previous content to ensure no styles are lost. */
.hero {
  position: relative;
  width: 100vw;
  left: 0;
  margin-left: 0;
  margin-right: 0;
  height: 480px;
  overflow: hidden;
  background: #222;
  z-index: 1;
  padding-top: 50px;
}

/* Smaller hero variant for subpages */
.small-hero {
  height: 320px;
}

.small-hero .hero-content {
  max-width: 820px;
  padding: 28px 24px;
  border-radius: 18px;
}

.carousel {
  position: relative;
  width: 100vw;
  height: 100%;
  left: 0;
}

.carousel-images {
  width: 100vw;
  height: 100%;
  position: relative;
  left: 0;
}

.carousel-img {
  width: 100vw;
  height: 480px;
  object-fit: cover;
  position: absolute;
  left: 0; top: 0;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 1;
}
.carousel-img.active {
  opacity: 1;
  z-index: 2;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  color: #fff;
  border: none;
  font-size: 3rem;
  padding: 0 22px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  opacity: 0.85;
}
.carousel-btn:hover {
  background: #00bcd4;
  color: #fff;
  opacity: 1;
}
.carousel-btn.left { left: 32px; }
.carousel-btn.right { right: 32px; }

.hero-overlay {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.hero-content {
  background: rgba(22, 166, 190, 0.75);
  color: #111;
  text-align: center;
  max-width: 700px;
  width: 90vw;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  position: relative;
  animation: fadeUpHero 1.2s cubic-bezier(.4,0,.2,1) 0.2s both;
  opacity: 0;
  transform: translateY(40px);
}

@keyframes fadeUpHero {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: #00334d;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.hero-content {
  font-size: 1.3rem;
  margin: 12px 0 0 0;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 900px) {
  .hero-content {
    padding: 24px 8px;
    font-size: 1rem;
  }
  .hero-content h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding: 12px 2px;
    font-size: 0.95rem;
  }
  .hero-content h2 {
    font-size: 1rem;
  }
}

/* Hero subtitle and CTA */
.hero-subtitle{ font-size:1.05rem; color:#042033; margin:12px 0 18px; font-weight:500; }
.hero-cta{ display:flex; gap:12px; justify-content:center; align-items:center; margin-bottom:12px; }
.btn{ display:inline-block; padding:10px 18px; border-radius:12px; text-decoration:none; font-weight:600; font-size:0.98rem; }
.btn.primary{ background:var(--royal-blue); color:#fff; box-shadow:0 10px 30px rgba(13,110,253,0.12); border:1px solid rgba(255,255,255,0.15); }
.btn.outline{ background:transparent; color:#042033; border:1.5px solid rgba(4,32,50,0.08); }
.btn.primary:hover{ transform:translateY(-3px); }
.btn.outline:hover{ background:rgba(13,110,253,0.06); }

/* small icon style for consistent decoration (if needed) */
.icon{ width:20px; height:20px; display:inline-block; vertical-align:middle; margin-right:8px; }

h2, h3 {
  margin-bottom: 20px;
  color: #1a1a1a;
  font-weight: bold;
}
.organized {
  text-align: center;
}
.organized img {
  max-width: 500px;
  width: 100%;
  margin: 15px auto;
  display: block;
}
.organized span {
  color: #cc0000;
  font-style: italic;
}
.about {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2.3rem;
  color: #2c2f30;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: left;
}

.about .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.about .text-content {
  flex: 3;
  min-width: 300px;
}

.about p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #333;
}

.about .logo-sidebar {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-top: 20px;
}

.icperes-logo-text {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00bcd4;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.publisher-logo {
  height: 80px;
  width: auto;
  max-width: 100%;
}

.about .pending {
  color:#00bcd4;
  font-weight: bold;
}

.about .award {
  color: green;
  font-weight: bold;
}

.read-more-btn {
  display: inline-block;
  background-color: #00bcd4;
  color: #fff;
  padding: 12px 25px;
  margin-top: 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.read-more-btn:hover {
  background-color: #0097a7;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .about h2 {
    font-size: 1.8rem;
  }
  .about .content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .about .text-content,
  .about .logo-sidebar {
    flex: none;
    width: 100%;
    min-width: unset;
  }
  .about .logo-sidebar {
    padding-top: 0;
    justify-content: center;
    align-items: center;
  }
  .icperes-logo-text {
    font-size: 2rem;
  }
  .publisher-logo {
    height: 70px;
  }
  .read-more-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 40px 15px;
  }
  .about h2 {
    font-size: 1.5rem;
  }
  .about p {
    font-size: 0.95rem;
  }
  .icperes-logo-text {
    font-size: 1.8rem;
  }
  .publisher-logo {
    height: 60px;
  }

/* Publication photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  align-items: start;
  margin-top: 12px;
}

.pub-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  object-fit: cover;
}

/* Ensure publisher logo sits nicely in sidebars */
.logo-sidebar img.publisher-logo {
  max-width: 220px;
  height: auto;
  margin: 10px auto;
  display: block;
}

/* Design system variables */
:root{
  --royal-blue:#0d6efd;
  --light-gray:#f3f6fb;
  --glass-bg: rgba(255,255,255,0.65);
  --glass-border: rgba(255,255,255,0.5);
  --glass-blur: 8px;
  --card-radius: 22px;
  --soft-shadow: 0 10px 30px rgba(13,110,253,0.08);
}

/* Publication section */
.pub-section{
  background: var(--light-gray);
  padding: 80px 20px;
}
.pub-section .section-title{
  text-align:center;
  margin-bottom:28px;
}
.pub-section .section-title h2{
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size:2.4rem;
  margin:0 0 8px 0;
  color:#0f2340;
  font-weight:700;
}
.pub-section .section-title .underline{
  width:56px;
  height:4px;
  background:var(--royal-blue);
  margin:8px auto 0;
  border-radius:4px;
}
.pub-grid{
  max-width:1200px;
  margin:32px auto 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
  align-items:stretch;
}
.pub-card{
  background: var(--glass-bg);
  border-radius:var(--card-radius);
  padding:22px;
  text-align:center;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border:1px solid var(--glass-border);
  transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.pub-card:hover{ transform: translateY(-8px); box-shadow: 0 18px 40px rgba(13,110,253,0.12);} 
.pub-card .pub-logo{ max-width:120px; margin:0 auto 14px; }
.pub-card p{ color:#223; font-size:0.98rem; line-height:1.45; margin:6px 0; }

/* Programs section */
.programs-section{
  background: #fff;
  padding: 80px 20px;
}
.programs-section .section-title{ text-align:center; margin-bottom:30px; }
.programs-section .section-title h2{ font-family: 'Poppins', 'Inter', sans-serif; font-size:2.4rem; color:#0f2340; font-weight:700; margin:0; }
.programs-section .section-title .underline{ width:56px; height:4px; background:var(--royal-blue); margin:8px auto 0; border-radius:4px; }

.timeline{
  position:relative;
  max-width:1100px;
  margin:40px auto 0;
  padding:20px 0;
}
.timeline::before{
  content:'';
  position:absolute;
  top:0; bottom:0; left:50%; transform:translateX(-50%);
  width:4px; background:var(--royal-blue); border-radius:2px;
}
.timeline-item{
  position:relative; width:50%; padding:18px 40px; box-sizing:border-box;
}
.timeline-item:nth-child(odd){ left:0; text-align:right; }
.timeline-item:nth-child(even){ left:50%; }
.timeline-marker{ position:absolute; top:24px; left:50%; transform:translateX(-50%); width:18px; height:18px; background:var(--royal-blue); border-radius:50%; box-shadow:0 6px 18px rgba(13,110,253,0.18);} 
.timeline-card{
  background: var(--glass-bg);
  border-radius:var(--card-radius);
  padding:16px 20px;
  display:inline-block;
  max-width:420px;
  box-shadow: var(--soft-shadow);
  border:1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transform: translateY(10px);
  opacity:0;
  transition: transform .6s ease, opacity .6s ease;
}
.timeline-item.visible .timeline-card{ transform: translateY(0); opacity:1; }
.timeline-time{ font-weight:700; color:var(--royal-blue); margin-bottom:6px; }
.timeline-title{ font-size:1.05rem; font-weight:700; color:#0f2340; margin-bottom:6px; }
.timeline-speaker{ font-size:0.95rem; color:#3b4b57; margin-bottom:8px; }
.timeline-desc{ font-size:0.92rem; color:#233; line-height:1.4; }

@media (max-width:900px){
  .timeline::before{ left:8px; }
  .timeline-item{ width:100%; padding-left:36px; padding-right:12px; margin-bottom:24px; }
  .timeline-item:nth-child(odd), .timeline-item:nth-child(even){ left:0; text-align:left; }
  .timeline-marker{ left:8px; transform:none; }
  .timeline-card{ max-width:100%; }
}

/* small helper to keep subpage spacing consistent */
.subpage-about{ padding-top:40px; padding-bottom:60px; }
  .read-more-btn {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

/* Important Dates Section */
.dates {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: 50px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInDates 1s forwards;
}

@keyframes fadeInDates {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dates h2 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.dates h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 4px;
  width: 80px;
  background-color: #00bcd4;
  border-radius: 2px;
}

.dates table {
  width: 50%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 auto;
  font-size: 1.05rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dates th, .dates td {
  border: 1px solid #e0e0e0;
  padding: 18px 25px;
  text-align: left;
  transition: background-color 0.3s ease;
}

.dates th {
  background-color: #00bcd4;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dates tr:nth-child(even) {
  background-color: #f9f9f9;
}

.dates tr:hover {
  background-color: #f0f8ff;
}

@media (max-width: 900px) {
  .dates {
    padding: 60px 20px;
  }
  .dates h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .dates h2::after {
    width: 60px;
  }
  .dates table {
    font-size: 0.95rem;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .dates th, .dates td {
    padding: 14px 18px;
  }
}

@media (max-width: 600px) {
  .dates {
    padding: 40px 15px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .dates h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .dates h2::after {
    width: 50px;
  }
  .dates th, .dates td {
    padding: 12px 15px;
  }
}

/* Organized By Section */
.organized-by {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: 50px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInOrganized 1s forwards;
}

@keyframes fadeInOrganized {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.organized-by h2 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.organized-by h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 4px;
  width: 80px;
  background-color: #00bcd4;
  border-radius: 2px;
}

.gce-logo {
  width: 150px;
  height: auto;
  margin: 20px auto 15px auto;
  display: block;
}

.org-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.3;
}

.org-affiliation {
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
  margin-bottom: 30px;
}

.org-affiliation span {
  font-style: italic;
  color: #00bcd4;
  font-weight: 500;
}

.college-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 30px auto 0 auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  object-fit: cover;
}

.college-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  .organized-by {
    padding: 60px 20px;
  }
  .organized-by h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .organized-by h2::after {
    width: 60px;
  }
  .gce-logo {
    width: 120px;
    margin-top: 15px;
  }
  .org-title {
    font-size: 1.5rem;
  }
  .org-affiliation {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .college-img {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .organized-by {
    padding: 40px 15px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .organized-by h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .organized-by h2::after {
    width: 50px;
  }
  .gce-logo {
    width: 100px;
    margin-top: 10px;
  }
  .org-title {
    font-size: 1.3rem;
  }
  .org-affiliation {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  .college-img {
    border-radius: 8px;
    margin-top: 20px;
  }
}

/* About College Section */
.about-college {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: justify;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: 50px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInCollege 1s forwards;
}

@keyframes fadeInCollege {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-college .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.about-college img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  flex-shrink: 0;
  object-fit: cover;
}

.about-college img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  .about-college .content {
    gap: 20px;
  }
  .about-college img {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .about-college .content {
    gap: 15px;
  }
  .about-college img {
    border-radius: 8px;
  }
}

/* About Department Section */
.about-dept {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: 50px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInDept 1s forwards;
}

@keyframes fadeInDept {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-dept h2 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.about-dept h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 4px;
  width: 80px;
  background-color: #00bcd4;
  border-radius: 2px;
}

.about-dept .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.about-dept img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  flex-shrink: 0;
  object-fit: cover;
}

.about-dept img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.about-dept p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.about-dept p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .about-dept {
    padding: 60px 20px;
  }
  .about-dept h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .about-dept h2::after {
    width: 60px;
  }
  .about-dept .content {
    gap: 20px;
  }
  .about-dept img {
    max-width: 100%;
  }
  .about-dept p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .about-dept {
    padding: 40px 15px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .about-dept h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .about-dept h2::after {
    width: 50px;
  }
  .about-dept p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .about-dept img {
    border-radius: 8px;
  }
}

/* For the h2 text itself */
.about-college h2 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* For the underline (::after pseudo-element) */
.about-college h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 4px;
  width: 80px;
  background-color: #00bcd4;
  border-radius: 2px;
}

/* Committees Section */
.committees {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: 50px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInCommittees 1s forwards;
}

@keyframes fadeInCommittees {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.committees h2 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.committees h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 4px;
  width: 80px;
  background-color: #00bcd4;
  border-radius: 2px;
}

.committees-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}

.committees-column {
  flex: 1;
  min-width: 300px;
}

.committee-group {
  margin-bottom: 30px;
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.committee-group:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.committee-group h3 {
  font-size: 1.6rem;
  color: #00bcd4;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.committee-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.committee-group li {
  list-style: none;
  padding-left: 0;
  position: relative;
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
  display: flex;
  align-items: flex-start;
}

.committee-group li:last-child {
  margin-bottom: 0;
}

.committee-group i {
  color: #ff9800;
  margin-right: 10px;
  font-size: 1.1em;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .committees {
    padding: 60px 20px;
  }
  .committees h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .committees h2::after {
    width: 60px;
  }
  .committees-content {
    flex-direction: column;
    gap: 30px;
  }
  .committee-group {
    padding: 20px;
  }
  .committee-group h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  .committee-group li {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
}

@media (max-width: 600px) {
  .committees {
    padding: 40px 15px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .committees h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .committees h2::after {
    width: 50px;
  }
  .committee-group {
    padding: 15px;
  }
  .committee-group h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .committee-group li {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  .committee-group i {
    font-size: 1em;
    margin-top: 1px;
  }
}

.patron-section {
  display: none;
}

.separator-line {
  display: none;
}

.red-italic {
  color: inherit;
  font-style: normal;
}

.registration-page {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: 50px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInContent 1s forwards;
}

.registration-guidelines h1 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.registration-guidelines h1::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 4px;
  width: 80px;
  background-color: #00bcd4;
  border-radius: 2px;
}

.guidelines-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px auto;
  max-width: 900px;
  text-align: left;
}

.guideline-item {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px 20px 15px 50px; /* Increased left padding for bullet */
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.5;
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.guideline-item::before {
  content: '\2022'; /* Unicode bullet point */
  color: #00bcd4;
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}

.guideline-item:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

@keyframes fadeInContent {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Registration Fees Section */
.registration-fees {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInContent 1s forwards;
}

.registration-fees h1 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.registration-fees h1::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 4px;
  width: 80px;
  background-color: #00bcd4;
  border-radius: 2px;
}

.fees-table-wrapper {
  max-width: 800px;
  margin: 40px auto;
}

.registration-fees table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
  font-size: 1.05rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  table-layout: fixed;
}

.registration-fees thead {
  background-color: #00bcd4;
  color: #fff;
}

.registration-fees th, .registration-fees td {
  border: 1px solid #e0e0e0;
  padding: 14px 18px;
  text-align: left;
  transition: background-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
}

.registration-fees th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.registration-fees tr:nth-child(even) {
  background-color: #f9f9f9;
}

.registration-fees tr:hover {
  background-color: #83b5e1;
}

@media (max-width: 900px) {
  .registration-page {
    padding: 60px 20px;
  }
  .registration-guidelines h1,
  .registration-fees h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .registration-guidelines h1::after,
  .registration-fees h1::after {
    width: 60px;
  }
  .guideline-item {
    padding: 12px 15px 12px 45px;
    font-size: 0.95rem;
  }
  .guideline-item::before {
    left: 15px;
  }
  .fees-table-wrapper {
    margin: 30px auto;
  }
  .registration-fees table {
    font-size: 0.95rem;
  }
  .registration-fees th, .registration-fees td {
    padding: 12px 15px;
  }
}

@media (max-width: 768px) {
  .fees-table-wrapper {
    margin: 20px auto;
  }
  .registration-fees table {
    display: block;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    overflow-x: auto;
    min-width: 300px;
  }
  .registration-fees thead {
    display: none;
  }
  .registration-fees tbody,
  .registration-fees tr {
    display: block;
  }
  .registration-fees tr {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background-color: #fff;
    overflow: hidden;
  }
  .registration-fees td {
    display: block;
    text-align: right;
    padding-left: 50%;
    position: relative;
    border: none;
    border-bottom: 1px dashed #e0e0e0;
    white-space: normal;
  }
  .registration-fees td:last-child {
    border-bottom: none;
  }
  .registration-fees td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: calc(50% - 30px);
    padding-right: 10px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    text-align: left;
    color: #555;
    box-sizing: border-box;
  }

  /* Specific labels for each column in mobile view */
  .registration-fees tr td:nth-child(1)::before {
    content: "Category:";
  }
  .registration-fees tr td:nth-child(2)::before {
    content: "Type:";
  }
  .registration-fees tr td:nth-child(3)::before {
    content: "Fees:";
  }
}

  /* Bank details table should visually match registration fees table
     but use its own mobile labels (Field / Details) */
  .bank-details thead {
    background-color: #00bcd4;
    color: #fff;
  }
  .bank-details th, .bank-details td {
    border: 1px solid #e0e0e0;
    padding: 14px 18px;
    text-align: left;
  }

  @media (max-width: 768px) {
    /* override the automatic mobile labels for bank-details */
    .bank-details tr td:nth-child(1)::before { content: "Field:"; }
    .bank-details tr td:nth-child(2)::before { content: "Details:"; }
  }

@media (max-width: 600px) {
  .registration-page {
    padding: 40px 15px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .registration-guidelines h1,
  .registration-fees h1 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .registration-guidelines h1::after,
  .registration-fees h1::after {
    width: 50px;
  }
  .guideline-item {
    padding: 10px 15px 10px 40px;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  .guideline-item::before {
    left: 10px;
  }
  .fees-table-wrapper {
    margin: 15px auto;
  }
  .registration-fees table {
    font-size: 0.85rem;
    min-width: 280px; /* Adjust min-width for very small screens */
  }
  .registration-fees tr {
    margin-bottom: 15px;
  }
  .registration-fees td {
    padding: 8px 10px;
    padding-left: 10px;
  }

  .registration-fees td::before {
    left: 10px;
    width: calc(50% - 20px);
    padding-right: 5px;
  }
}

.call-for-paper-page {
  padding: 80px 20px;
  max-width: 960px;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  animation: fadeInContent 0.8s ease-out forwards;
  margin-top: 100px;
}

.call-for-paper-intro h1,
.topics-of-interest h2,
.submission-info h2 {
  font-size: 2.8rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.call-for-paper-intro h1::after,
.topics-of-interest h2::after,
.submission-info h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #00bcd4;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.call-for-paper-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  text-align: justify;
  margin-bottom: 30px;
}

.call-for-paper-intro p a {
  color: #00bcd4;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.call-for-paper-intro p a:hover {
  color: #0097a7;
}

.topics-of-interest {
  margin-top: 50px;
}

.topics-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.topics-list li {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px 20px;
  font-size: 1rem;
  color: #333333;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.topics-list li:hover {
  background-color: #e3f2fd;
  border-color: #00bcd4;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.topics-list li::before {
  content: '\2022';
  color: #00bcd4;
  font-size: 1.5em;
  margin-right: 10px;
  line-height: 1;
}

.submission-info {
  margin-top: 50px;
  text-align: center;
  padding: 30px;
  background-color: #f0f8ff;
  border-radius: 12px;
  border: 1px solid #cceeff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.submission-button {
  display: inline-block;
  background-color: #00bcd4;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.submission-button:hover {
  background-color: #0097a7;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.microsoft-cmt-note {
  font-size: 0.95rem;
  color: #d32f2f;
  margin-top: 15px;
  line-height: 1.5;
  text-align: center;
}

/* Responsive adjustments for call for paper page */
@media (max-width: 900px) {
  .call-for-paper-page {
    padding: 60px 15px;
    margin-top: 80px;
  }

  .call-for-paper-intro h1,
  .topics-of-interest h2,
  .submission-info h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .call-for-paper-intro p {
    font-size: 1rem;
  }

  .topics-of-interest {
    margin-top: 40px;
  }

  .topics-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .topics-list li {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  .submission-info {
    padding: 25px;
    margin-top: 40px;
  }

  .submission-button {
    padding: 12px 25px;
    font-size: 1.1rem;
  }

  .microsoft-cmt-note {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .call-for-paper-page {
    padding: 40px 10px;
    margin-top: 70px;
    border-radius: 8px;
  }

  .call-for-paper-intro h1,
  .topics-of-interest h2,
  .submission-info h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .call-for-paper-intro p {
    font-size: 0.95rem;
  }

  .topics-of-interest {
    margin-top: 30px;
  }

  .topics-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .topics-list li {
    font-size: 0.85rem;
    padding: 10px 12px;
  }

  .submission-info {
    padding: 20px;
    margin-top: 30px;
  }

  .submission-button {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .microsoft-cmt-note {
    font-size: 0.85rem;
  }
}

.highlight-text {
  font-weight: bold;
  color: #00bcd4;
  background-color: #e3f2fd;
  padding: 2px 5px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.highlight-text:hover {
  background-color: #00bcd4;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.paper-submission-page {
  padding: 80px 20px;
  max-width: 960px;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  animation: fadeInContent 0.8s ease-out forwards;
  margin-top: 100px;
}

.submission-guidelines h1 {
  font-size: 2.8rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.submission-guidelines h1::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #00bcd4;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.guideline-section {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fcfcfc;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.guideline-section h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  text-align: left;
}

.guideline-section h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #00bcd4;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 1.5px;
}

.guideline-section p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

.guideline-section .template-link {
  color: #00bcd4;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.guideline-section .template-link:hover {
  color: #0097a7;
  text-decoration: underline;
}

.note-microsoft-cmt {
  font-size: 0.95rem;
  color: #d32f2f;
  margin-top: 15px;
  line-height: 1.5;
  text-align: center;
  background-color: #fff0f0;
  border: 1px solid #ffcccc;
  padding: 15px;
  border-radius: 8px;
}

.submission-guidelines .guidelines-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.submission-guidelines .guidelines-list li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.submission-guidelines .guidelines-list li:hover {
  color: #00bcd4;
}

/* Responsive adjustments for paper submission page */
@media (max-width: 900px) {
  .paper-submission-page {
    padding: 60px 15px;
    margin-top: 80px;
  }
  .submission-guidelines h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .guideline-section {
    margin-bottom: 30px;
    padding: 15px;
  }
  .guideline-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .guideline-section p {
    font-size: 1rem;
  }
  .note-microsoft-cmt {
    font-size: 0.85rem;
    padding: 10px;
  }
  .submission-guidelines .guidelines-list li {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .paper-submission-page {
    padding: 40px 10px;
    margin-top: 70px;
    border-radius: 8px;
  }

  .submission-guidelines h1 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .guideline-section {
    margin-bottom: 25px;
    padding: 12px;
  }
  .guideline-section h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .guideline-section p {
    font-size: 0.9rem;
  }
  .note-microsoft-cmt {
    font-size: 0.8rem;
    padding: 8px;
  }
  .submission-guidelines .guidelines-list {
    padding-left: 20px;
  }
  .submission-guidelines .guidelines-list li {
    font-size: 0.85rem;
  }
}

.how-to-reach-page {
  padding: 80px 20px;
  max-width: 960px;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  animation: fadeInContent 0.8s ease-out forwards;
  margin-top: 100px;
}

.reach-info {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fcfcfc;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.reach-info h1 {
  font-size: 2.8rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.reach-info h1::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #00bcd4;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.reach-info .location-detail {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
  text-align: center;
}

.reach-info .way-to-gce {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  text-align: center;
}

.reach-info .way-to-gce::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #00bcd4;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 1.5px;
}

.map-container {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

/* Responsive adjustments for how-to-reach page */
@media (max-width: 900px) {
  .how-to-reach-page {
    padding: 60px 15px;
    margin-top: 80px;
  }

  .reach-info h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .reach-info .location-detail {
    font-size: 1rem;
  }

  .reach-info .way-to-gce {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .map-container iframe {
    width: 100%;
    height: 400px;
  }
}

@media (max-width: 600px) {
  .how-to-reach-page {
    padding: 40px 10px;
    margin-top: 70px;
    border-radius: 8px;
  }

  .reach-info h1 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .reach-info .location-detail {
    font-size: 0.9rem;
  }

  .reach-info .way-to-gce {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .map-container {
    margin-top: 20px;
  }

  .map-container iframe {
    height: 300px;
  }
}



