:root {
    --primary-red: #e4002b;
    --primary-red-dark: #bb0025;
    --primary-red-soft: #fff1f4;

    --navy: #101b3f;
    --text-dark: #171b26;
    --text-medium: #5f6470;
    --text-light: #8a8e98;

    --white: #ffffff;
    --background-light: #f7f8fa;
    --border-light: #e8e9ed;

    --shadow-light: 0 20px 55px rgba(15, 24, 52, 0.08);
    --shadow-card: 0 16px 40px rgba(15, 24, 52, 0.07);

    --container-width: 1180px;
    --transition: 0.3s ease;
}


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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}


img,
svg {
    display: block;
    max-width: 100%;
}


.container {
    width: min(var(--container-width), calc(100% - 40px));
    margin-inline: auto;
}


.event-section {
    position: relative;
    padding: 100px 0;
}


.section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}


.site-header {
  position: relative;
  width: 100%;
  background: #f4f4f4;
}


.main-navbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid rgba(16, 27, 63, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 5px 25px rgba(16, 27, 63, 0.04);
  backdrop-filter: blur(14px);
  transition:
    padding 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.main-navbar.navbar-scrolled {
  position: fixed;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 30px rgba(16, 27, 63, 0.1);
}



.navbar-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 20px;
  background: #101b3f;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.navbar-toggle-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggle-active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.homepage-banner {
  position: relative;
  width: 100%;
  min-height: 480px;
  padding-top: 0px;
  overflow: hidden;
  background: #eeeeef;
}

.homepage-banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.homepage-banner-image {
  display: block;
  width: 100%;
  min-height: 490px;
  object-fit: cover;
  object-position: center;
}

.homepage-banner-action {
  position: absolute;
  z-index: 5;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
}



.banner-scroll-down {
  position: absolute;
  z-index: 5;
  right: 30px;
  bottom: 26px;
  display: flex;
  gap: 9px;
  align-items: center;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.banner-scroll-down i {
  animation: bannerScroll 1.8s infinite;
}

@keyframes bannerScroll {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}



@media (max-width: 900px) {

 

  .navbar-menu-open {
    display: flex;
    flex-direction: column;
  }

  .navbar-link {
    padding: 13px 12px;
    border-bottom: 1px solid #eeeeef;
  }

  .navbar-link::after {
    display: none;
  }

  .navbar-register-button {
    margin-top: 12px;
  }

  .homepage-banner {
    min-height: 460px;
    padding-top: 74px;
  }

  .homepage-banner-image {
    min-height: 460px;
  }

  .homepage-banner-overlay {
    top: 74px;
  }
}


@media (max-width: 700px) {

  .homepage-banner {
    min-height: auto;
    padding-top: 74px;
    background: #f2f2f2;
  }

  .homepage-banner picture,
  .homepage-banner-image {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .homepage-banner-image {
    object-fit: contain;
  }

  .homepage-banner-action {
    position: relative;
    bottom: auto;
    left: auto;
    display: flex;
    padding: 18px 14px;
    transform: none;
    background: #f4f4f5;
  }

  .banner-register-button {
    width: 100%;
  }

  .banner-scroll-down {
    display: none;
  }
}



.section-heading-center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}


.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    line-height: 1;
    text-transform: uppercase;
}


.section-label::before {
    width: 32px;
    height: 2px;
    content: "";
    background: currentColor;
}


.section-label-light {
    color: #ffb5c3;
}


.section-heading h2,
.agenda-intro h2 {
    color: var(--text-dark);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 700;
    letter-spacing: -1.8px;
    line-height: 1.15;
}


.section-heading h2 span,
.agenda-intro h2 span {
    color: var(--primary-red);
}


.section-heading > p,
.agenda-intro > p {
    margin-top: 20px;
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.8;
}


.about-section {
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(228, 0, 43, 0.08),
            transparent 28%
        ),
        var(--white);
}


.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 70px;
    align-items: center;
}


.about-content > p {
    color: var(--text-medium);
    font-size: 16px;
}


.about-content > p + p {
    margin-top: 20px;
}


.about-content .about-lead {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
}


.about-lead strong {
    color: var(--primary-red);
}


.about-highlight {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    padding: 20px;
    border: 1px solid rgba(228, 0, 43, 0.13);
    border-radius: 18px;
    background: var(--primary-red-soft);
}


.highlight-icon {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    place-items: center;
    border-radius: 14px;
    color: var(--white);
    background: var(--primary-red);
}


.highlight-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.about-highlight h3 {
    margin-bottom: 5px;
    color: var(--navy);
    font-size: 17px;
    line-height: 1.4;
}


.about-highlight p {
    color: black;
    font-size: 14px;
    line-height: 1.5;
}

.about-visual {
    position: relative;
    display: grid;
    gap: 12px;
    min-height: 350px;
    padding: 30px 50px;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            rgba(228, 0, 43, 0.97),
            rgba(164, 0, 34, 0.98)
        );
    box-shadow: var(--shadow-light);
}


.visual-pattern {
    position: absolute;
    top: -90px;
    right: -150px;
    width: 350px;
    height: 330px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}


.visual-pattern::before,
.visual-pattern::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    content: "";
}


.visual-pattern::before {
    inset: 35px;
}


.visual-pattern::after {
    inset: 75px;
}


.visual-card {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    transition:
        transform var(--transition),
        background var(--transition);
}


.visual-card:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.16);
}


.visual-card-primary {
    margin-left: -65px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(73, 0, 14, 0.22);
}


.visual-number {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}


.visual-card h3 {
    margin-bottom: 7px;
    color: var(--white);
    font-size: 17px;
}


.visual-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.65;
}


.visual-card-primary .visual-number {
    color: var(--primary-red);
}


.visual-card-primary h3 {
    color: var(--navy);
}


.visual-card-primary p {
    color: var(--text-medium);
}

/* =========================================================
   KEY DISCUSSION THEMES
========================================================= */

.themes-section {
    position: relative;
    padding: 85px 0;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #101b3f 0%,
            #182653 100%
        );
}


/* Decorative background circle */

.themes-section::before {
    position: absolute;
    top: -230px;
    right: -180px;
    width: 520px;
    height: 520px;
    border: 70px solid rgba(228, 0, 43, 0.07);
    border-radius: 50%;
    content: "";
}


/* Section container */

.themes-section .container {
    position: relative;
    z-index: 2;
    width: min(1100px, calc(100% - 40px));
    margin-inline: auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.themes-section .section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}


.themes-section .section-label {
    color: #ff8da2;
}


.themes-section .section-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 750;
    letter-spacing: -1.4px;
    line-height: 1.18;
}


.themes-section .section-heading h2 span {
    color: #ff5d79;
}


.themes-section .section-heading p {
    max-width: 650px;
    margin: 17px auto 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   COMPACT THEMES GRID
========================================================= */

.themes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}


/* =========================================================
   COMPACT THEME CARDS
========================================================= */

.theme-card {
    position: relative;
    min-height: 210px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(8px);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.theme-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 93, 121, 0.4);
    background: rgba(255, 255, 255, 0.085);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}


/* Theme icon */

.theme-icon {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    background: #e4002b;
    box-shadow: 0 10px 22px rgba(228, 0, 43, 0.22);
}


.theme-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Card number */

.theme-count {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.11);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}


/* Card heading */

.theme-card h3 {
    max-width: 100%;
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}


/* Card description */

.theme-card p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   FIFTH CARD ALIGNMENT
========================================================= */

/*
The fifth card will appear centred in the second row.
This creates a cleaner 3 + 2 systematic layout.
*/

.theme-card:nth-child(4) {
    grid-column: 1 / 2;
}


.theme-card:nth-child(5) {
    grid-column: 2 / 3;
}


/* Remove previous wide-card styling */

.theme-card-wide {
    display: block;
    grid-column: auto;
    min-height: 210px;
}


.theme-card-wide .theme-icon {
    margin-bottom: 18px;
}


/* =========================================================
   OPTIONAL: FIVE-CARD 3 + 2 CENTRED LAYOUT
========================================================= */

@media (min-width: 901px) {

    .themes-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }


    .theme-card {
        grid-column: span 2;
    }


    .theme-card:nth-child(4) {
        grid-column: 2 / span 2;
    }


    .theme-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .themes-section {
        padding: 75px 0;
    }


    .themes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .theme-card,
    .theme-card:nth-child(4),
    .theme-card:nth-child(5) {
        grid-column: auto;
    }


    .theme-card:nth-child(5) {
        grid-column: 1 / -1;
        width: calc(50% - 9px);
        justify-self: center;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .themes-section {
        padding: 65px 0;
    }


    .themes-section .container {
        width: min(100% - 28px, 1100px);
    }


    .themes-section .section-heading {
        margin-bottom: 32px;
    }


    .themes-section .section-heading h2 {
        font-size: 29px;
    }


    .themes-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }


    .theme-card,
    .theme-card:nth-child(4),
    .theme-card:nth-child(5) {
        width: 100%;
        min-height: auto;
        grid-column: auto;
        justify-self: stretch;
        padding: 22px;
    }


    .theme-icon {
        width: 43px;
        height: 43px;
        margin-bottom: 16px;
    }


    .theme-icon svg {
        width: 21px;
        height: 21px;
    }


    .theme-card h3 {
        padding-right: 32px;
        font-size: 15px;
    }


    .theme-card p {
        font-size: 12.5px;
    }


    .theme-count {
        top: 20px;
        right: 18px;
        font-size: 30px;
    }
}

.agenda-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(228, 0, 43, 0.07),
            transparent 25%
        ),
        #f7f8fa;
}



.agenda-section .container {
    width: min(1000px, calc(100% - 40px));
    margin-inline: auto;
}



.agenda-layout {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}


.agenda-intro {
    position: static;
    width: 100%;
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
}


.agenda-intro .section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #e4002b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.7px;
    line-height: 1;
    text-transform: uppercase;
}


.agenda-intro .section-label::before,
.agenda-intro .section-label::after {
    width: 32px;
    height: 2px;
    content: "";
    background: #e4002b;
}


.agenda-intro h2 {
    margin: 0;
    color: #171b26;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 750;
    letter-spacing: -1.7px;
    line-height: 1.15;
}


.agenda-intro h2 span {
    color: #e4002b;
}


.agenda-intro > p {
    max-width: 700px;
    margin: 20px auto 0;
    color: #5f6470;
    font-size: 16px;
    line-height: 1.8;
}


/* Programme duration card */

.agenda-info-card {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    margin-top: 28px;
    padding: 16px 22px;
    border: 1px solid #e5e7ed;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(16, 27, 63, 0.07);
    text-align: left;
}


.agenda-info-icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border-radius: 13px;
    color: #ffffff;
    background: #e4002b;
}


.agenda-info-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.agenda-info-card span {
    display: block;
    color: #8a8e98;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.agenda-info-card strong {
    display: block;
    margin-top: 2px;
    color: #101b3f;
    font-size: 16px;
}


/* =========================================================
   CENTRED AGENDA TIMELINE
========================================================= */

.agenda-timeline {
    position: relative;
    width: 100%;
    max-width: 880px;
    margin-inline: auto;
}


.agenda-item {
    display: grid;
    width: 100%;
    grid-template-columns: 135px 32px minmax(0, 1fr);
    gap: 20px;
    min-height: 175px;
}


/* Time */

.agenda-time {
    padding-top: 24px;
    text-align: right;
}


.agenda-time span {
    display: block;
    color: #101b3f;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
}


.agenda-time small {
    display: block;
    margin-top: 3px;
    color: #8a8e98;
    font-size: 12px;
    font-weight: 600;
}



.agenda-marker {
    position: relative;
    display: flex;
    justify-content: center;
}


.agenda-marker::before {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    content: "";
    background: #dcdfe6;
}


.agenda-marker span {
    position: relative;
    z-index: 2;
    width: 16px;
    height: 16px;
    margin-top: 29px;
    border: 4px solid #f7f8fa;
    border-radius: 50%;
    background: #e4002b;
    box-shadow: 0 0 0 2px #e4002b;
}


.agenda-item:last-child .agenda-marker::before {
    bottom: calc(100% - 38px);
}


/* Agenda content cards */

.agenda-content {
    margin-bottom: 25px;
    padding: 25px 28px;
    border: 1px solid #e6e8ed;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(16, 27, 63, 0.05);
    text-align: left;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.agenda-content:hover {
    transform: translateX(6px);
    border-color: rgba(228, 0, 43, 0.25);
    box-shadow: 0 18px 40px rgba(16, 27, 63, 0.09);
}


.agenda-tag {
    display: inline-block;
    margin-bottom: 9px;
    color: #e4002b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}


.agenda-content h3 {
    margin: 0;
    color: #101b3f;
    font-size: 18px;
    font-weight: 750;
    line-height: 1.5;
}


.agenda-content p {
    margin: 8px 0 0;
    color: #5f6470;
    font-size: 14px;
    line-height: 1.7;
}


/* Featured agenda item */

.agenda-item-featured .agenda-content {
    border-color: rgba(228, 0, 43, 0.22);
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #fff1f4
        );
}


.agenda-item-featured .agenda-marker span {
    width: 20px;
    height: 20px;
    margin-top: 27px;
    background: #101b3f;
    box-shadow: 0 0 0 2px #101b3f;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

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


    .agenda-section .container {
        width: min(100% - 28px, 1000px);
    }


    .agenda-intro {
        margin-bottom: 45px;
    }


    .agenda-intro h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }


    .agenda-intro > p {
        font-size: 15px;
    }


    .agenda-item {
        grid-template-columns: 115px 28px minmax(0, 1fr);
        gap: 14px;
    }


    .agenda-content {
        padding: 22px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .agenda-section {
        padding: 65px 0;
    }


    .agenda-intro {
        margin-bottom: 38px;
    }


    .agenda-intro .section-label {
        font-size: 11px;
        letter-spacing: 1.2px;
    }


    .agenda-intro .section-label::before,
    .agenda-intro .section-label::after {
        width: 22px;
    }


    .agenda-intro h2 {
        font-size: 29px;
    }


    .agenda-info-card {
        width: 100%;
        max-width: 330px;
        justify-content: flex-start;
    }


    .agenda-item {
        display: grid;
        grid-template-columns: 24px minmax(0, 1fr);
        gap: 14px;
        min-height: auto;
        margin-bottom: 20px;
    }


    .agenda-time {
        grid-column: 2;
        grid-row: 1;
        padding-top: 0;
        text-align: left;
    }


    .agenda-time span,
    .agenda-time small {
        display: inline;
    }


    .agenda-time small {
        margin-left: 5px;
    }


    .agenda-marker {
        grid-column: 1;
        grid-row: 1 / span 2;
    }


    .agenda-marker span {
        margin-top: 5px;
    }


    .agenda-item-featured .agenda-marker span {
        margin-top: 3px;
    }


    .agenda-content {
        grid-column: 2;
        grid-row: 2;
        margin-bottom: 0;
        padding: 20px;
    }


    .agenda-content:hover {
        transform: none;
    }


    .agenda-content h3 {
        font-size: 16px;
    }


    .agenda-item:last-child .agenda-marker::before {
        bottom: calc(100% - 15px);
    }
}



@media (max-width: 850px) {

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


    .about-grid {
        grid-template-columns: 1fr;
    }


    .about-visual {
        min-height: auto;
    }


    .themes-grid {
        grid-template-columns: 1fr;
    }


    .theme-card-wide {
        display: block;
        grid-column: auto;
        min-height: 280px;
    }


    .theme-card-wide .theme-icon {
        margin-bottom: 28px;
    }
}


@media (max-width: 640px) {

    .container {
        width: min(100% - 28px, var(--container-width));
    }


    .event-section {
        padding: 65px 0;
    }


    .section-heading {
        margin-bottom: 40px;
    }


    .section-heading h2,
    .agenda-intro h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }


    .section-heading > p,
    .agenda-intro > p {
        font-size: 15px;
    }


    .about-content .about-lead {
        font-size: 17px;
    }


    .about-highlight {
        flex-direction: column;
    }


    .about-visual {
        padding: 30px 20px;
        border-radius: 22px;
    }


    .theme-card {
        min-height: auto;
        padding: 27px 23px;
    }


    .theme-card h3 {
        font-size: 18px;
    }


    .agenda-item {
        grid-template-columns: 24px minmax(0, 1fr);
        gap: 14px;
        min-height: auto;
        margin-bottom: 20px;
    }


    .agenda-time {
        grid-column: 2;
        grid-row: 1;
        padding-top: 0;
        text-align: left;
    }


    .agenda-marker {
        grid-column: 1;
        grid-row: 1 / span 2;
    }


    .agenda-marker span {
        margin-top: 5px;
    }


    .agenda-item-featured .agenda-marker span {
        margin-top: 3px;
    }


    .agenda-content {
        grid-column: 2;
        grid-row: 2;
        margin-bottom: 0;
        padding: 22px 20px;
    }


    .agenda-content:hover {
        transform: none;
    }


    .agenda-item:last-child .agenda-marker::before {
        bottom: calc(100% - 15px);
    }
}


@media (max-width: 430px) {

    .section-label {
        font-size: 11px;
        letter-spacing: 1.3px;
    }


    .section-label::before {
        width: 22px;
    }


    .section-heading h2,
    .agenda-intro h2 {
        font-size: 28px;
    }


    .theme-count {
        top: 24px;
        right: 22px;
        font-size: 38px;
    }


    .agenda-content h3 {
        font-size: 16px;
    }
}


.register-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(228, 0, 43, 0.09),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f8f9fb 0%,
            #ffffff 50%,
            #f8f9fb 100%
        );
}


.register-section::before {
    position: absolute;
    top: -220px;
    right: -220px;
    width: 540px;
    height: 540px;
    border: 85px solid rgba(228, 0, 43, 0.045);
    border-radius: 50%;
    content: "";
}


.register-section::after {
    position: absolute;
    bottom: -170px;
    left: -170px;
    width: 420px;
    height: 420px;
    border: 70px solid rgba(16, 27, 63, 0.03);
    border-radius: 50%;
    content: "";
}


.register-container {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    gap: 60px;
    align-items: center;
}



.register-info {
    max-width: 500px;
}


.register-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #e4002b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;
    line-height: 1;
    text-transform: uppercase;
}


.register-label::before {
    width: 34px;
    height: 2px;
    content: "";
    background: #e4002b;
}


.register-info h2 {
    color: #171b26;
    font-size: clamp(30px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.12;
}


.register-info h2 span {
    display: block;
    color: #e4002b;
}


.register-description {
    margin-top: 2px;
    color: #5f6470;
    font-size: 16px;
    line-height: 1.85;
}


.register-event-details {
    display: grid;
    gap: 17px;
    margin-top: 33px;
}


.register-detail-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 13px 15px;
    border: 1px solid #e7e9ef;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 30px rgba(16, 27, 63, 0.04);
    backdrop-filter: blur(8px);
}


.register-detail-icon {
    display: grid;
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    place-items: center;
    border-radius: 13px;
    color: #ffffff;
    background: #e4002b;
    box-shadow: 0 10px 24px rgba(228, 0, 43, 0.2);
}


.register-detail-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.register-detail-item span {
    display: block;
    margin-bottom: 2px;
    color: #8a8e98;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.register-detail-item strong {
    display: block;
    color: #101b3f;
    font-size: 15px;
    font-weight: 750;
}



.register-form-wrapper {
    position: relative;
    padding: 42px;
    overflow: hidden;
    border: 1px solid rgba(16, 27, 63, 0.08);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 28px 75px rgba(16, 27, 63, 0.12);
}


.register-form-wrapper::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    content: "";
    background: linear-gradient(
        90deg,
        #e4002b,
        #ff4c6d,
        #e4002b
    );
}


.register-form-heading {
    margin-bottom: 30px;
}


.register-form-heading > span {
    display: block;
    margin-bottom: 7px;
    color: #e4002b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.register-form-heading h3 {
    color: #101b3f;
    font-size: 29px;
    font-weight: 750;
    letter-spacing: -0.8px;
    line-height: 1.25;
}


.register-form-heading p {
    margin-top: 8px;
    color: #757a86;
    font-size: 14px;
    line-height: 1.7;
}


.f5-register-form {
    width: 100%;
}


.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}


.form-group {
    position: relative;
}


.form-group-full {
    grid-column: 1 / -1;
}


.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #252a37;
    font-size: 13px;
    font-weight: 700;
}


.form-group label span {
    margin-left: 3px;
    color: #e4002b;
}


.form-group input {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #dde0e7;
    outline: none;
    border-radius: 11px;
    color: #171b26;
    background: #fafbfc;
    font-family: inherit;
    font-size: 14px;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.form-group input::placeholder {
    color: #a3a7b1;
}


.form-group input:hover {
    border-color: #c9ccd4;
    background: #ffffff;
}


.form-group input:focus {
    border-color: #e4002b;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(228, 0, 43, 0.08);
}


.form-group input:invalid:not(:placeholder-shown) {
    border-color: #d93f4d;
}


/* =========================================================
   CONSENT
========================================================= */

.form-consent {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-top: 23px;
}


.form-consent input {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-top: 3px;
    accent-color: #e4002b;
    cursor: pointer;
}


.form-consent label {
    color: #6a6f7a;
    font-size: 12px;
    line-height: 1.65;
    cursor: pointer;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.register-submit-button {
    display: flex;
    width: 100%;
    min-height: 54px;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 14px 24px;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #e4002b,
            #c00027
        );
    box-shadow: 0 15px 30px rgba(228, 0, 43, 0.22);
    font-family: inherit;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.register-submit-button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}


.register-submit-button:hover {
    transform: translateY(-2px);
    background:
        linear-gradient(
            135deg,
            #f00032,
            #b50023
        );
    box-shadow: 0 19px 38px rgba(228, 0, 43, 0.29);
}


.register-submit-button:hover svg {
    transform: translateX(4px);
}


.register-submit-button:active {
    transform: translateY(0);
}


.form-privacy-text {
    margin-top: 15px;
    color: #9296a0;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}


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

@media (max-width: 1050px) {

    .register-container {
        grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
        gap: 45px;
    }


    .register-form-wrapper {
        padding: 34px;
    }
}


@media (max-width: 900px) {

    .register-section {
        padding: 85px 0;
    }


    .register-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }


    .register-info {
        max-width: 720px;
    }


    .register-event-details {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }


    .register-detail-item {
        align-items: flex-start;
    }
}


@media (max-width: 700px) {

    .register-container {
        width: min(100% - 28px, 1180px);
    }


    .register-event-details {
        grid-template-columns: 1fr;
    }


    .register-form-wrapper {
        padding: 30px 22px;
        border-radius: 21px;
    }


    .form-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }


    .form-group-full {
        grid-column: auto;
    }
}


@media (max-width: 480px) {

    .register-section {
        padding: 65px 0;
    }


    .register-info h2 {
        font-size: 34px;
        letter-spacing: -1.2px;
    }


    .register-description {
        font-size: 15px;
    }


    .register-note {
        flex-direction: column;
    }


    .register-form-heading h3 {
        font-size: 25px;
    }


    .form-group input {
        height: 50px;
        font-size: 13px;
    }
}
/* =========================================================
   REGISTER CONTACT CARD
========================================================= */

.register-contact-card {
    position: relative;
    margin-top: 23px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid rgba(16, 27, 63, 0.09);
    border-radius: 19px;
    background:
        linear-gradient(
            135deg,
            #101b3f 0%,
            #182958 100%
        );
    box-shadow: 0 18px 40px rgba(16, 27, 63, 0.13);
}


.register-contact-card::before {
    position: absolute;
    top: -80px;
    right: -70px;
    width: 190px;
    height: 190px;
    border: 35px solid rgba(228, 0, 43, 0.22);
    border-radius: 50%;
    content: "";
}


.register-contact-card::after {
    position: absolute;
    right: 45px;
    bottom: -75px;
    width: 150px;
    height: 150px;
    border: 26px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    content: "";
}


.register-contact-header {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}


.register-contact-header > span {
    display: block;
    margin-bottom: 5px;
    color: #ff7891;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}


.register-contact-header h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}


.register-contact-header p {
    max-width: 340px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.65;
}


.register-contact-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 11px;
}


.register-contact-item {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 13px;
    color: inherit;
    background: rgba(255, 255, 255, 0.07);
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}


.register-contact-item:hover {
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
}


.register-contact-icon {
    display: grid;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    place-items: center;
    border-radius: 11px;
    color: #ffffff;
    background: #e4002b;
}


.register-contact-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.register-contact-item > div:nth-child(2) {
    min-width: 0;
    flex: 1;
}


.register-contact-item span {
    display: block;
    margin-bottom: 1px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.register-contact-item strong {
    display: block;
    overflow-wrap: anywhere;
    color: #ffffff;
    font-size: 13px;
    font-weight: 650;
}


.register-contact-arrow {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.65);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}


.register-contact-item:hover .register-contact-arrow {
    transform: translateX(3px);
}


@media (max-width: 480px) {

    .register-contact-card {
        padding: 21px 18px;
    }


    .register-contact-header h3 {
        font-size: 18px;
    }


    .register-contact-item {
        padding: 12px;
    }


    .register-contact-item strong {
        font-size: 12px;
    }
}
/* =========================================================
   FOOTER SECTION
========================================================= */

.footer-section {
    position: relative;
    overflow: hidden;
    padding: 40px 20px 20px;
    background:
        linear-gradient(
            135deg,
            #101b3f 0%,
            #172651 55%,
            #101b3f 100%
        );
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
}


.footer-glow-left {
    bottom: -130px;
    left: -90px;
    width: 300px;
    height: 300px;
    background: rgba(228, 0, 43, 0.22);
}


.footer-glow-right {
    top: -150px;
    right: -100px;
    width: 340px;
    height: 340px;
    background: rgba(228, 0, 43, 0.16);
}


/* Main footer content */

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(1180px, 100%);
    margin-inline: auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


/* Footer logo */

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    text-decoration: none;
}


.footer-logo {
    width: 220px;
    max-height: 75px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.footer-logo-link:hover .footer-logo {
    transform: translateY(-3px);
    opacity: 0.9;
}


/* Social icons */

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}


.footer-social a {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    font-size: 16px;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.footer-social a:hover {
    transform: translateY(-4px);
    border-color: rgba(228, 0, 43, 0.7);
    background: #e4002b;
    box-shadow: 0 12px 25px rgba(228, 0, 43, 0.26);
}


.footer-social a i {
    line-height: 1;
}


.footer-copyright {
    width: 100%;
    margin: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.6;
}


@media (max-width: 768px) {

    .footer-section {
        padding: 48px 18px 24px;
    }


    .footer-logo {
        width: 165px;
    }


    .footer-social {
        gap: 10px;
        margin-bottom: 24px;
    }


    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
}


@media (max-width: 480px) {

    .footer-section {
        padding-top: 42px;
    }


    .footer-logo {
        width: 145px;
    }


    .footer-social a {
        width: 40px;
        height: 40px;
    }


    .footer-copyright {
        padding-top: 20px;
        font-size: 12px;
    }
}