h1{
    font-family: 'Roboto', sans-serif;
}
body{

    font-family: 'Roboto', sans-serif;
}
.logo{
    width: 70px;
}
.logo-text{
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}
.container{
    max-width: 1050px !important;
}
.faq-section {
  background: linear-gradient(135deg, #fdfdfd 0%, #f3f7fa 100%);
  padding: 60px 0;
}

.faq-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  color: #333;
}

/* Стили самого аккордеона */
.accordion-item {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button {
  background-color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  padding: 1rem 1.5rem;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Стрелочка (иконка) вправо по умолчанию */
.accordion-button::after {
  font-family: "Font Awesome 6 Free";
  content: "\f067"; /* FA icon: plus */
  font-weight: 900;
  position: absolute;
  right: 1.5rem;
  transition: transform 0.2s ease;
}

/* При наведении – легкий бэкграунд */
.accordion-button:hover {
  background-color: #f9f9f9;
}

/* При открытии вопроса (aria-expanded="true") меняем иконку на "minus" */
.accordion-button[aria-expanded="true"]::after {
  content: "\f068"; /* FA icon: minus */
}

/* Снимаем тень обводки по умолчанию при открытии */
.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  background-color: #fff;
  padding: 1.25rem 1.5rem;
  color: #444;
  line-height: 1.7;
}
.intro{
    height: 100vh;
    padding: 20px 0;
    width: 100%;
    background: linear-gradient(180deg, #06152b, #10427c);
    position: relative;
}
.intro::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 400px;
  max-width: 400px;
  right: 10%;
  bottom: 50%;
  transform: translateY(50%);
  background-image: url(../images/bgintro.webp);
  background-size: contain;
  opacity: .3;
}
.header__intro{
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
}
.subheader__intro{
    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;
}


.button-container {
    display: flex;
  }
  
  .trade-button {
    background-color: #fff; /* Белый цвет фона */
    color: #000; /* Черный цвет текста */
    border: none;
    border-radius: 8px;
    padding: 20px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  
  .trade-button:hover {
    transform: scale(1.05);
  }
  .features-container {
    display: flex;
    text-align: left;
    max-width: 500px;
  }
  
  /* Карточка одной фичи */
  .feature-item {
    flex: 1;
  }
  
  .feature-item h2 {
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    margin: 0;
  }
  
  .feature-item p {
    font-size: 16px;
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.8);
  }
@media(max-width:500px){
  .intro::after{
    opacity: .1;
  }
  .logo-text{
    font-size: 1.5rem;
  }
  .header__intro{
    font-size: 2.8rem;
  }
  .feature-item h2{
    font-size: 1.5rem;
  }
}
.content {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
}

.ambassador {
  flex: 1;
  position: relative;
  text-align: center;
}

.ambassador img {
  border-radius: 10px;
  transform: scale(1.5);  
  max-width:150px
}

.ambassador .info {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
}

.sponsors {
  flex: 2;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.sponsors h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #333;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sponsors-grid .sponsor {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f6f8fa;
  padding: 10px;
  border-radius: 5px;
}

.sponsors-grid .sponsor img {
  width: 40px;
}

.sponsors-grid .sponsor span {
  font-size: 16px;
  color: #333;
}

@media (max-width: 768px) {
  .content {
      flex-direction: column;
      gap: 20px;
  }

  .sponsors {
      padding: 20px;
  }
  .ambassador img{
  transform: scale(1.0);
  max-width: 100%;
  }
  .ambassador .info{
    bottom: 0;
  }
}
.sponsors-grid a{
  text-decoration: none; 
}
@media(max-width:993px){
  .intro{
    height: 100%;
  }

}
.full-width-section {
  width: 100%;
  background-color: #f7fafd;
  padding: 50px 0;
}

.content-center {
  text-align: center;
}

.content-center h1 {
  font-size: 32px;
  color: #2b3a55;
  margin-bottom: 20px;
}

.content-center p {
  font-size: 18px;
  color: #5f6c87;
  line-height: 1.6;
  margin-bottom: 30px;
}

.content-center button {
  background-color: #fff;
  color: #2b3a55;
  font-size: 16px;
  padding: 10px 20px;
  border: 1px solid #d1dce5;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.content-center button:hover {
  background-color: #e4eaf1;
}

@media (max-width: 768px) {
  .content-center h1 {
      font-size: 28px;
  }

  .content-center p {
      font-size: 16px;
  }

  .content-center button {
      font-size: 14px;
      padding: 8px 16px;
  }
}
.steps-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.steps-section h2 {
  font-size: 3rem;
  color: #1d294f;
  margin-bottom: 10px;
}

.steps-section h2 span {
  color: #00bcd4;
}

.steps-section p {
  font-size: 18px;
  color: #5a667f;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  text-align: center;
  max-width: 250px;
}

.step-circle {
  width: 80px;
  height: 80px;
  background-color: #eef4f9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #00bcd4;
  font-weight: bold;
}

.step-title {
  font-size: 20px;
  color: #1d294f;
  margin-bottom: 10px;
}

.step-description {
  font-size: 16px;
  color: #5a667f;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .steps-container {
      flex-direction: column;
      gap: 20px;
      align-items: center;
  }
}
.why-cfi-section {
  background: linear-gradient(135deg, #e6ebfa, #ffffff);
  padding: 60px 20px;
  text-align: center;
}

.why-cfi-section h2 {
  font-size: 36px;
  color: #1d294f;
  margin-bottom: 10px;
}

.why-cfi-section p {
  font-size: 18px;
  color: #5a667f;
  margin-bottom: 40px;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.card-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  flex: 1;
  max-width: 250px;
  text-align: center;
}

.card-item i {
  font-size: 40px;
  color: #3872f0;
  margin-bottom: 15px;
}

.card-item h3 {
  font-size: 18px;
  color: #1d294f;
  margin-bottom: 10px;
}

.card-item p {
  font-size: 16px;
  color: #5a667f;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .cards-container {
      flex-direction: column;
      align-items: center;
  }

  .card {
      max-width: 100%;
      width: 100%;
  }
}
.payment-methods-section {
  padding: 60px 20px;
  background-color: #f9fbfd;
  text-align: center;
}

.payment-methods-section h2 {
  font-size: 28px;
  color: #1d294f;
  margin-bottom: 40px;
}

.payment-methods-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.payment-method {
  background-color: #eef4f9;
  border-radius: 10px;
  padding: 20px;
  width: 100% !important;
  flex: 1;
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.payment-method img {
  max-width: 80%;
  height: auto;
}

@media (max-width: 768px) {
  .payment-methods-container {
      flex-direction: column;
      align-items: center;
  }

  .payment-method {
      max-width: 100%;
  }
  .payment-method img{
    width: 40% !important;

  }
}
.registration-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.registration-text {
  flex: 1;
  padding-right: 20px;
}

.registration-text h2 {
  font-size: 36px;
  color: #1d294f;
  margin-bottom: 10px;
}

.registration-text h2 span {
  color: #00bcd4;
}

.registration-text p {
  font-size: 18px;
  color: #5a667f;
}

.registration-form {
  flex: 1;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #d1dce5;
  border-radius: 5px;
}

.form-group select {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #d1dce5;
  border-radius: 5px;
}

.checkbox-group {
  font-size: 14px;
  color: #5a667f;
  margin-bottom: 20px;
}

.checkbox-group a {
  color: #00bcd4;
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 16px;
  color: #ffffff;
  background-color: #00bcd4;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
}

.submit-button:hover {
  background-color: #0097a7;
}

@media (max-width: 768px) {
  .registration-section {
      flex-direction: column;
      align-items: stretch;
  }

  .registration-text {
      padding-right: 0;
      margin-bottom: 20px;
  }
}
.footer-section {
  background: linear-gradient(135deg, #0c2146, #1a355c);
  color: #ffffff;
  padding: 40px 20px;
  text-align: left;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-section p strong {
  color: #ffffff;
}

.footer-section a {
  color: #ffffff;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  margin-top: 20px;
}

.footer-links div {
  text-align: center;
}

.footer-links a {
  margin: 0 10px;
  font-size: 14px;
  color: #ffffff;
}

.footer-note {
  text-align: center;
  font-size: 12px;
  margin-top: 20px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-links {
      flex-direction: column;
      gap: 10px;
  }
}
.platforms-section {
  padding: 60px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}

.platforms-text {
  flex: 1;
  max-width: 40%;
}

.platforms-text h2 {
  font-size: 36px;
  color: #1d294f;
  margin-bottom: 10px;
}

.platforms-text p {
  font-size: 18px;
  color: #5a667f;
  margin-bottom: 20px;
}

.platform-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.platform-button {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 2px solid #00bcd4;
  border-radius: 10px;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s;
}

.platform-button:hover {
  background-color: #eef4f9;
}

.platform-button.active {
  background-color: #00bcd4;
  color: #ffffff;
}

.platform-button img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.platform-images {
  flex: 1;
  max-width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.platform-images img {
  position: absolute;
  transition: opacity 0.3s ease;
}

.platform-images img.phone {
  left: 20%;
  bottom: -30px;
  width: 250px;
  z-index: 1;
  border: none !important;
}

.platform-images img.desktop {
  right: 10%;
  bottom: -40px;
  width: 400px;
  z-index: 0;
}

.platform-images img.hidden {
  opacity: 0;
  visibility: hidden;
}

.platform-images img.visible {
  opacity: 1;
  visibility: visible;
}.platform-images-mob{
  display: none;
}

@media (max-width: 768px) {
  .platforms-section {
      flex-direction: column;
      text-align: center;
  }

  .platforms-text {
      max-width: 100%;
      margin-bottom: 20px;
  }

  .platform-buttons {
      margin-bottom: 20px;
  }

  .platform-images {
      flex-direction: column;
      align-items: center;
      margin-top: 20px;
      display: none;

  }

  .platform-images img.phone {
     max-width: 200px;
      position: static;
      margin: 0 auto;
      display: block;
      padding: 0;
      margin: 0;
  }

  .platform-images img.desktop {
     max-width: 300px;
      position: static;
  }
}
.platform-images-mob {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.platform-images-mob img {
  width: 90%;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .platform-images {
      display: none;
  } 

  .platform-images-mob .phone{
    border: none !important;
    box-shadow: none;
    max-width: 130px;
    padding: 0 !important;
    z-index: 1;
  }
  .platform-images-mob {
      display: flex;
  }
  .platform-images-mob .desktop{
    position: relative;
    top: -230px;
    z-index: 0;
  }

  .platform-images-mob img {
      width: 80%;
  }
}
