/* ===============================
   CONTAINER
================================ */

.conference-container{
  background:#e8edfa;
  border-radius:16px;
  padding:40px 30px;
  border-top:6px solid #4a6fcf;
  box-shadow:0 8px 25px rgba(74,111,207,0.12);
}

/* ===============================
   TITLE
================================ */

.conference-title{
  font-size:32px;
  color:#2f4f9f;
  font-weight:700;
  margin-bottom:35px;
  text-align:center;
}

/* ===============================
   TOP SECTION
================================ */

.conference-top{
  display:flex;
  gap:30px;
  align-items:flex-start;
}

/* IMAGE */

.conference-logo{
  flex:0 0 220px;
}

.conference-logo img{
  width:100%;
  border-radius:12px;
  box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

/* CONTENT */

.conference-content{
  flex:1;
}

.conference-date{
  font-size:18px;
  font-weight:700;
  color:#2f4f9f;
  margin-bottom:15px;
}

.conference-description{
  font-size:16px;
  color:#333;
  line-height:1.8;
}

/* BUTTON */

.conference-btn{
  display:inline-block;
  margin-top:20px;
  background:#4a6fcf;
  color:#fff;
  padding:12px 24px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
}

.conference-btn:hover{
  background:#2f4f9f;
  color:#fff;
}

/* ===============================
   COUNTDOWN
================================ */

.countdown-wrapper{
  margin-top:40px;
  text-align:center;
}

.countdown-title{
  font-size:22px;
  color:#2f4f9f;
  margin-bottom:20px;
  font-weight:700;
}

.countdown-timer{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px;
}

.time-box{
  background:#4a6fcf;
  color:#fff;
  padding:18px 22px;
  border-radius:12px;
  min-width:100px;
  box-shadow:0 4px 12px rgba(74,111,207,0.25);
}

.time-box span{
  font-size:32px;
  font-weight:700;
  display:block;
}

.time-box p{
  font-size:14px;
  margin-top:5px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width:768px){

  .conference-top{
    flex-direction:column;
    text-align:center;
  }

  .conference-logo{
    margin:auto;
  }

  .conference-btn{
    margin-top:25px;
  }

  .time-box{
    min-width:80px;
    padding:15px;
  }

  .time-box span{
    font-size:24px;
  }
}