
:root {
  --primary-color: #38729e;
  --accent-color: #ff8c00;
  --text-primary: #393d40;
  --text-secondary: #393d40;
  --text-muted: #6c757d;
  --background-light: #f2f2f2;
  --white: #ffffff;
  --border-color: #ced4da;
  --hero-teal: #4ECDC4;
  
  /* --font-inter: 'Inter', sans-serif; */
  --font-inter: "pf_beau";
  --font-ubuntu: "pf_beau";
  /* --font-ubuntu: 'Ubuntu', sans-serif; */
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "pf_beau";
  /* font-family: var(--font-inter); */
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
}

.textpage h1 {
    opacity: 0;
    height: 0px;
}
.top_level {
    margin: 0 auto 3rem;
}
/* Header */
.header {
  background-color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.logo {
  height: 63px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-size: 13px;
  color: var(--text-primary);
  text-decoration: underline;
  font-weight: 400;
}

.nav-link:hover {
  color: var(--primary-color);
}

.header-secondary {
  display: flex;
  gap: 40px;
  margin-bottom: 15px;
  justify-content: flex-end;
}

.secondary-link {
  font-size: 13px;
  color: var(--text-primary);
  text-decoration: underline;
  font-weight: 400;
}

.secondary-link:hover {
  color: var(--primary-color);
}
.breadcrumbs, .breadcrumbs__item {
  display: none;
}
.header-menu {
  display: flex;
  gap: 60px;
  align-items: center;
}

.menu-item {
  font-size: 16px;
  color: var(--text-primary);
  text-transform: uppercase;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-title {
  cursor: pointer;
}

.dropdown-icon {
  width: 23px;
  height: 12px;
}

/* Breadcrumb */
.breadcrumb {
  background-color: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-text {
  font-size: 15px;
  color: #838383;
  font-weight: 400;
}




.main {
  padding: 40px 0;
}

.title-section {
  margin-bottom: 60px;
}

.main-title {
  font-family: var(--font-inter);
  font-size: 70px;
  font-weight: 600;
  line-height: 50px;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.main-subtitle {
  font-family: var(--font-ubuntu);
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.intro-text {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}

.intro-column {
  flex: 1;
}

.intro-column p {
  font-family: var(--font-ubuntu);
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: var(--text-secondary);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--accent-color);
    border-radius: 2rem;
    min-height: 180px;
     justify-content: space-evenly !important;
}

.cta-button {
  padding: 20px 40px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-ubuntu);
  font-size: 24px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 300px;
  margin: 2rem 0;
}

.cta-button.primary, .cta-button.secondary {
    background-color: #ffffff;
    color: var(--text-secondary);
    margin: 2rem 3rem;
    flex-basis: 29rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Section Titles */
.section-title {
  font-family: var(--font-ubuntu);
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

img.fingra-top.desktoponly {
    width: 100%;
}

.about-section {
  margin-bottom: 60px;
}

.about-content {
  display: flex;
  gap: 60px;
}

.about-text {
  flex: 1;
}

.about-text p {
  font-family: var(--font-ubuntu);
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.about-image {
  margin-top: 30px;
}

.competition-img {
  width: 100%;
  max-width: 651px;
  height: auto;
  border-radius: 20px;
}

.about-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-block {
  background-color: var(--white);
}

.info-title {
  font-family: var(--font-ubuntu);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.info-text {
  font-family: var(--font-ubuntu);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-secondary);
}

/* Stages Section */
.stages-section {
  margin-bottom: 60px;
}

.stages-content {
  display: flex;
  gap: 40px;
}

.stage-card {
  flex: 1;
  background-color: var(--background-light);
  border-radius: 20px;
  padding: 30px;
}

.stage-title {
  font-family: var(--font-ubuntu);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.stage-date {
  font-family: var(--font-ubuntu);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.stage-details p {
  font-family: var(--font-ubuntu);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.stage-details p:last-child {
  margin-bottom: 0;
}



.requirements-section {
  margin-bottom: 60px;
}

.requirements-content {
  font-family: var(--font-ubuntu);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-secondary);
}

.requirements-content p {
  margin-bottom: 20px;
}

.requirements-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.requirements-content li {
  margin-bottom: 15px;
}

.requirements-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.requirements-content a:hover {
  text-decoration: underline;
}

/* Registration Section */
.registration-section iframe .justify-content-center {
    justify-content: center!important;
    width: 100%;
    overflow: hidden;
}
.registration-section {
  margin-bottom: 60px;
}

.registration-intro {
  font-family: var(--font-ubuntu);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.registration-form {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 4px;
  padding: 40px;
  max-width: 600px;
}

.form-row {
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  color: #212529;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.date-input {
  position: relative;
}

.calendar-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.select-wrapper {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
}

.checkbox-group label {
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 400;
  color: #212529;
  line-height: 1.4;
}

.consent-link {
  color: #0366d6;
  text-decoration: none;
}

.consent-link:hover {
  text-decoration: underline;
}

.submit-button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #2a5a7a;
}

/* Tags Section */
.tags-section {
  margin-bottom: 60px;
}

.tags {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.tag {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 400;
}


.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 40px 0;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo-img {
  height: 124px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
  flex: 1;
}

.footer-title {
  font-family: var(--font-inter);
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.footer-details p {
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 5px;
}

.footer-details a {
  color: var(--white);
  text-decoration: underline;
}

.footer-social {
  flex-shrink: 0;
}

.footer-social .footer-title {
  font-size: 12px;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: block;
  width: 30px;
  height: 30px;
}

.social-icon {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .stages-content {
    flex-direction: column;
  }
  
  .intro-text {
    flex-direction: column;
    gap: 30px;
  }
  
  .cta-buttons {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
img.fingra-top {
    width: 100%;
}
  
  .header-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .header-secondary {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .header-menu {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .main-title {
    font-size: 44px;
    line-height: 1.2;
  }
  
  .main-subtitle {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .intro-column p {
    font-size: 18px;
  }
  
  .cta-button {
    min-width: 250px;
    font-size: 18px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .registration-form {
    padding: 20px;
  }
}