body {
  background: #0B0B0B;
  font-family: 'Inter', sans-serif;
}

header {
  background-color: #2B0009;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
}

.header_content {
  display: flex;
  align-items: center;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  justify-content: space-between;
}



.navigation ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    color: #F5F6F6;
}

.navigation ul li {
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
}

.navigation ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #FDEFBE;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navigation ul li:hover::after {
    width: 100%;
}

.navigation ul li.active::after {
    width: 100%;
}

.navigation ul li.active {
    color: #FDEFBE;
}

a {
    text-decoration: none;
    color: #F5F6F6;
}


.yellow {
    color: #FDEFBE;
}

.white {
    color: #F5F6F6;
}

.cover {
    position: relative;
    width: 100%;
    margin-top: 100px;
}

.cover img {
    width: 100%;
    height: 800px;
    display: block;
    object-fit: cover;
}

.cover_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.underline {
    position: relative;
    display: inline-block;
}

.underline::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #4E061A;
    border-radius: 4px;
}

.custom-button {
    width: 257px;
    height: 74px;
    background-color: #4E061A;
    color: #F5F6F6;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.custom-button:hover {
    background-color: #6B0824;
    transform: scale(1.05);
}

.custom-button:active {
    transform: scale(0.95);
}

.section_1 {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.section-wrapper {
    width: 1200px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-title {
    color: #F5F6F6;
    font-size: 36px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin: 0;
}

.cards-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.card {
    width: 360px;
    height: 395px;
    background: #4E061A;
    border-radius: 60px;
    overflow: hidden;
    position: relative;
}

.card-content {
    width: 292px;
    position: absolute;
    left: 34px;
    top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.card-number {
    color: #FDEFBE;
    font-size: 64px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.card-title {
    width: 255px;
    color: #FDEFBE;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.card-divider {
    width: 100%;
    border: none;
    border-top: 1px solid #F5F6F6;
}

.card-text {
    color: #FDEFBE;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    width: 100%;
}

.about-section {
    width: 100%;
    background: #4E061A;
    overflow: hidden;
    padding: 35px 0;
}

.about-wrapper {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-title {
    color: #F5F6F6;
    font-size: 36px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin: 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    flex-wrap: wrap;
}

.about-label {
    color: #FDEFBE;
    font-size: 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.about-text {
    color: #F5F6F6;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.about-item.full-width {
    display: block;
    padding: 10px 0;
}

.about-description {
    color: #F5F6F6;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}



.quest-content {
    padding: 100px 200px 0;
    max-width: 1600px;
    margin: 0 auto;
}

.quest-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.quest-title {
    color: #FDEFBE;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 10px;
}

.quest-subtitle {
    color: #F5F6F6;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 48px;
}

.quest-image {
    width: 1200px;
    margin: 0 auto;
    height: 533px;
    background: #262626;
    border-radius: 20px;
    margin-bottom: 40px;
}

.quest-input-wrapper {
    width: 1150px;
    margin: 0 auto;
    background: #222222;
    border-radius: 64px;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.quest-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 15px 0;
}

.quest-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.quest-arrow {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.quest-arrow:hover {
    transform: scale(1.1);
}