:root {
--backgroud-color: #ffffff;

}
html, body {
  overflow-x: hidden;
  background-color: transparent;
}

.btn-cta-secondary {
  background-color: transparent;
  backdrop-filter: blur(5px);
  border: 2px solid white;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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


/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: auto;
  animation: slider 10s ease-in-out infinite;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@keyframes slider {
  0% {
    background-image: url(../images/background/bg_1.png);
  }
  50% {
    background-image: url(../images/background/bg2.png);
  }
  100% {
    background-image: url(../images/background/bg_3.png);
  }
}

.hero-content {
  position: relative;
  padding-top: 2.5em;
}

.hero-text {
  color: var(--bg-white);
}

.hero-title {
  color: var(--secondary-color);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  padding-bottom: 1em;
  
  /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);*/
}

.hero-subtitle {
  color: var(--bg-white);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Conference title*/
.conference-dates {
  background: linear-gradient(
    to right,
    rgba(255, 255, 0, 0.2),
    rgba(2, 68, 21, 0.2)
  );
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 2rem;
  width: 70%;
  margin: 0 auto 2rem;
}

.conference-dates h3 {
  color: var(--bg-light);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.8rem;
  /*text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);*/
}

.conference-dates p {
  color: var(--bg-light);
  margin: 0;
  font-size: 1.5rem;
  /*font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif*/
  /*text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);*/
}

.conference-dates h5 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--bg-light);
  margin-top: 1rem;
  /*font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif*/

  /*text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);*/
}

/* CTA Buttons */
.cta-buttons {
  gap: 1rem;
}



/* ==Deadline== */
.deadline-section {
  background-color: var(--backgroud-color);
  padding: 1rem 1rem;
  text-align: center;
}

.deadline-section .container {
  /* max-width: 900px; */
  margin: 0 auto;
}

.deadline-section .title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.deadline-section .subtitle {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 2.deadline-section .5rem;
}

.deadline-section .countdown {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.deadline-section .5rem;
}

.deadline-section .time-box {
  /* background: #f0fdf4; */
  border: 2px solid #34d399;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  /* min-width: 110px; */
  width: 200px;

  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.deadline-section .2s ease;
}

.deadline-section .time-box:hover {
  transform: translateY(-5px);
}

.deadline-section .time {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #059669;
}

.deadline-section .label {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #555;
  margin-top: 0.25rem;
}

.deadline-section .button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  margin-top:2rem;
}

.deadline-section .btn {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  /* font-size: 1rem; */
  border-radius: 9999px;
  transition: all 0.2s ease;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.deadline-section .btn-dark {
  background-color: #111827;
  color: white;
}

.deadline-section .btn-dark:hover {
  background-color: #1f2937;
}

.deadline-section .btn-submit {
  background-color: #dc2626;
  color: white;
  font-size: 1.deadline-section .125rem;
  padding: 1rem 2rem;
}

.deadline-section .btn-submit:hover {
  background-color: #b91c1c;
}

.deadline-section .submit-wrapper {
  margin-top: 1rem;
}



/* == Submission button == */
.submission-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.submission-actions .submission-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 320px;
  align-items: center;
}

.submission-actions .action-button {
  display: inline-block;
  width: 100%;
  padding: 0.9rem 1.5rem;
  text-align: center;
  background-color: #ffffff;
  color: #111827;
  /* border: 2px solid #10b981; */
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
.submission-actions .action-button:first-child{
  color:white;
  background-color: black;
}
.submission-actions .action-button:nth-of-type(2){
  color:white;
  background-color: green
}

.submission-actions .action-button:hover {
  background-color: #facc15; /* jaune hover */
  color: #111827;
  cursor: pointer;
}

/* ==President word */

.president-section {
  background: #f9fafb;
  padding: 5rem 1rem 6rem;
  border-top: 1px solid #e5e7eb;
}

.president-section .container {
  /* max-width: 1100px; */
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.president-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  /* color: #047857; */
  margin-bottom: 1rem;
}

.president-section .section-text {
  /* font-size: 1rem; */
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
  text-align: justify;
}

.president-section .author {
  font-weight: 600;
  margin-top: 1rem;
  color: #111;
}

.president-section .author span {
  display: block;
  font-weight: normal;
  /* font-size: 0.9rem; */
  color: #666;
}

.president-section .objectives-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
}

.president-section .card {
  background: white;
  border: 1px solid #e5e7eb;
  border-left: 6px solid #047857;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.president-section .objective-card {
  background-color: #ecfdf5;
  border-left-color: #10b981;
}

.president-section .specific-objectives {
  background-color: #fef2f2;
  border-left-color: #dc2626;
  /* font-size: 1rem; */
}

.president-section .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.president-section .card-text {
  /* font-size: 1rem; */
  line-height: 1.75;
  color: #374151;
}

.president-section .objectives-list {
  padding-left: 1.2rem;
  list-style-type: decimal;
  color: #1f2937;
}

.president-section .objectives-list li {
  margin-bottom: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .president-section .objectives-wrapper {
    flex-direction: row;
    gap: 2rem;
  }

  .president-section .card {
    flex: 1;
  }
}


/* About ABPF & Enabel */
/* ORGANISATEURS */

.president-section{
  margin-bottom:5rem;
}

.president-section .organizers-section {
  margin-top: 5rem;
  margin-bottom:5rem;
}

.president-section .organizers-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
  text-align: center;
}

.president-section .organizers-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .president-section .organizers-grid {
    flex-direction: row;
  }
}

.president-section .organizer-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: box-shadow 0.2s ease;
}
.president-section .organizer-card > p{
  text-align:center;
}
.president-section .organizer-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.president-section .organizer-logo-link {
  display: inline-block;
  align-self: flex-start;
  transition: transform 0.3s ease;
}

.president-section .organizer-logo-link:hover {
  transform: scale(1.05);
}

.president-section .organizer-logo {
  height: 50px;
  width: auto;
}

.president-section .organizer-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.president-section .abpf-name {
  color: #16a34a; /* green */
  text-align: justify;
}

.president-section .enabel-name {
  color: #111; /* black */
  text-align: center;
}

.president-section .organizer-text {
  /* font-size: 1rem; */
  line-height: 1.7;
  color: #374151;
  text-align: justify;
}

.organizer-card {
  text-align: center; /* centers inline content like <a> and <img> */
  margin: 1em 0;
}

.organizer-logo-link {
  display: block;        /* ensures it takes full line */
  margin: 0 auto;        /* horizontally centers block elements */
}

.organizer-logo {
  max-width: 100%;       /* responsive */
  height: auto;
  display: block;        /* remove inline spacing */
  margin: 0 auto;        /* centers the image */
}

.organizers-section >p{
  text-align: center;
  font-size: 1.5rem;
}

/* Information pratique */
.practical-information {
  padding: 3em 1em;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  color: #333;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.3em;
}

.section-intro {
  text-align: justify;
  /* max-width: 100%; */
  margin: 0 auto 2em;
  color: #555;
  font-size: 1.1rem;
}

.info-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.info-card {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  transition: transform 0.2s ease;
}

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

.info-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.btn-cta {
  display: inline-block;
  margin-top: 1em;
  padding: 0.6em 1.2em;
  background: #007b3e;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-top: 1em;
}

.btn-secondary {
  background: #eaeaea;
  padding: 0.5em 1em;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: background 0.2s ease;
}

.btn-secondary:hover {
  background: #ccc;
}

/* Hotels */
.hotel-section {
  margin-top: 3rem;
}

.hotel-section h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.hotel-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-align: center;
  padding-bottom: 1em;
}

.hotel-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hotel-card h5 {
  font-size: 1.1rem;
  margin: 0.8em 0 0.4em;
}

.hotel-card a {
  color: var(--primary-color);
  text-decoration: none;
}

.hotel-card a:hover {
  text-decoration: underline;
}

.hotel-card p {
  /* font-size: 0.95rem; */
  padding: 0 1em;
}


/* ==Agenda== */
.agenda-section{
  margin-top:5rem;
  margin-bottom:5rem;
  margin:1rem;
  padding:1rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--accent-color);
    /* background-color: rgb(240, 220, 220); */
}

.agenda-section .agenda-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.agenda-section .agenda-tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.agenda-section .agenda-tab-btn {
  background-color: #f0f0f0;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
  color: #222;
}

.agenda-section .agenda-tab-btn.active-btn,
.agenda-section .agenda-tab-btn:hover {
  background-color: #30a14e;
  color: white;
}

.agenda-section .agenda-day {
  display: none;
}

.agenda-section .agenda-day.active-tab {
  display: block;
  animation: fadeIn 0.4s ease;
}

.agenda-section .agenda-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.2rem;
  background-color: #fff;
  border-left: 6px solid #30a14e;
  border-radius: 10px;
  box-shadow:0 2px 8px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.2rem;
  align-items: center;
  transition: all 0.5s;
}
.agenda-section .agenda-card:hover {
  box-shadow:0 2px 8px #30a14e;

}

.agenda-section .agenda-date {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
}

.agenda-section .agenda-date .day {
  font-size: 2rem;
}

.agenda-section .agenda-date .month,
.agenda-section .agenda-date .year {
  color: #888;
}

.agenda-section .agenda-info {
  flex-grow: 1;
}

.agenda-section .agenda-session-title {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.agenda-section .agenda-details {
  font-size: 0.95rem;
  color: #555;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.agenda-section .icon {
  margin-right: 0.3em;
  color: #30a14e;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* === Responsive mobile enhancements === */
.agenda-section .agenda-tab-buttons {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE/Edge */
}

.agenda-section .agenda-tab-buttons::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.agenda-section .agenda-tab-buttons {
  white-space: nowrap;
  padding-bottom: 0.5rem;
}

.agenda-section .agenda-tab-btn {
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
}

/* === Adaptation mobile card === */
@media (max-width: 600px) {
  .agenda-section .agenda-card {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .agenda-section .agenda-details {
    flex-direction: column;
    gap: 0.5rem;
  }

  .agenda-section .agenda-date {
    margin-bottom: 0.5rem;
  }
}




/* ==Pricing section ==*/
.pricing-section-2 {
  /* padding: 4em 1em; */
  margin:1rem;
  padding:2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--primary-color);
}

.pricing-section-2 .tab-buttons {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.pricing-section-2 .tab-btn-2 {
  background: #e6f0ea;
  border: none;
  padding: 0.7em 1.6em;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  color: #2b5d3a;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.pricing-section-2 .tab-btn-2.active,
.pricing-section-2 .tab-btn-2:hover {
  background-color: #30a14e;
  color: #fff;
  box-shadow: 0 4px 10px rgba(48, 161, 78, 0.25);
}

.pricing-section-2 .tab-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.pricing-section-2 .tab-content.active {
  display: block;
}

.pricing-section-2 .pricing-card-2 {
  background-color: #fff;
  border-radius: 16px;
  padding: 2.5em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  color: #333;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.pricing-section-2 .pricing-card-2:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.pricing-section-2 .pricing-card-2 .card-header-2 {
  background: #e6f0ea;
  color: #30a14e;
  border-radius: 10px;
  padding: 1.5rem;
  margin: -2rem -2rem 2rem -2rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}

.pricing-section-2 .price {
  font-size: 2.8rem;
  font-weight: 800;
  color: #30a14e;
  margin: 1.2rem 0 0.5rem;
}

.pricing-section-2 .features {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  color: #444;
  margin: 2rem 0;
  text-align: left;
}

.pricing-section-2 .features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid #eee;
}

.pricing-section-2 .features li:last-child {
  border-bottom: none;
}

.pricing-section-2 .features li::before {
  content: "✔️";
  color: #30a14e;
  font-size: 1rem;
}

.pricing-section-2 .btn-pricing-2 {
  background-color: #30a14e;
  color: #fff;
  padding: 0.75em 2em;
  border-radius: 40px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
}

.pricing-section-2 .btn-pricing-2:hover {
  background-color: #248a3c;
  transform: translateY(-2px);
  color: #fff;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .pricing-section-2 .pricing-card-2 {
    padding: 2em;
  }

  .pricing-section-2 .tab-buttons {
    flex-direction: column;
    align-items: center;
  }

  .pricing-section-2 .price {
    font-size: 2.2rem;
  }
}



/* ==Scientific Commitee */
.committee-section {
  border: 1px solid var(--primary-color);
   margin:1rem;
  padding:2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.committee-section .section-title {
  font-weight: 700;
  /* color: #30a14e; */
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;

}

.committee-section .committee-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 1.5rem 1rem;
}

.committee-section .committee-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.committee-section .committee-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid #e6f0ea;
}

.committee-section .committee-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #222;
}

.committee-section .committee-role {
  color: #30a14e;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.committee-section .committee-title {
  font-size: 0.9rem;
  color: #666;
}

/* == Sponsors == */

.sponsors {
  /* Assuming this class exists on the parent section */
  background: var(--bg-light);
  /* Add padding if needed, e.g., padding: 5rem 0; */
}

.sponsor-logo {
  height: 120px; /* Maintain fixed height or adjust as needed */
  background: white;
  border-radius: 15px;
  display: flex; /* Use flexbox to center the image */
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden; /* Keep image within rounded corners */
  padding:10px;
}

.sponsor-logo:hover {
  transform: scale(1.05);
}

.sponsor-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: cover;
}

.sponsor-logo.small-logo {
  height: 80px;
  padding: 0.5rem;
}

.sponsors .card {
  height: 100%;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sponsors .card-body {
  display: flex;
  flex-direction: column;
}

.sponsors .card p {
  flex-grow: 1; /* Make text take available space */
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1rem; /* Example spacing */
}

.sponsors .card .d-flex.align-items-center {
  margin-top: auto; /* Push author info to bottom */
}


/* == Contact == */
/* Contact Section */
.contact {
  background: var(--bg-white);
    margin-bottom: 1.5rem;

}

.contact-info {
  background: var(--bg-white);
  color: white;
  border-radius: 15px;
  padding: 2rem 2rem 0 2rem;
  border: 1px solid var(--primary-color);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
  0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--primary-color);
}

@media (max-width: 600px) {
  .agenda-section .agenda-card {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .agenda-section .agenda-details {
    flex-direction: column;
    gap: 0.5rem;
  }

  .agenda-section .agenda-date {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 768px) {
  .contact-info{
    margin-top:1rem;
  }
}


.deadline-section .button-group,
.deadline-section .submit-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.deadline-section .button-group a,
.deadline-section .submit-wrapper a {
    border-radius: 2rem;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
}

