* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
}

body {
  background: linear-gradient(to bottom right, #f7f0f5, #d8ecf6);
  color: #1c1e21;
  min-height: 100vh;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 60px 12px 60px;
    background-color: #fff;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: #1c1e21;
}

.right-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button{
    background: #fff !important;
    border: none;
}

.icon-button img {
  width: 28px;
  height: 28px;
  border: none;
  margin-right: 20px;
  background: #fff;
}

.contact-button {
  background-color: #1877f2;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
}

.contact-button img {
  margin-right: 8px;
}

.main-content {
  padding: 90px 20px;
  max-width: 700px;
  margin: 0 auto;
}

.expert-section {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 55px;
  border-bottom: 1px solid #fff;
}

.expert-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.expert-text h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.expert-text p {
  color: #606770;
  font-size: 12px;
}

.support-section .support-label {
  color: #0E1D22;
  margin-bottom: 8px;
  font-size: 17px;
}

.support-section h1 {
  font-size: 50px;
  margin-bottom: 16px;
  font-weight: 500;
}

.support-section p {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 500;
}

.explore-button {
  display: inline-block;
  height: 50px;
  align-items: center;
  justify-content: center;
  background-color: #1877f2;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.explore-button img {
  margin-top: 3px;
  margin-left: 8px;
}

.explore-button:hover {
  background-color: #166fe5;
}

.explore-button-container-footer a{
    width: 358px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

/* Responsive for mobile */
@media (max-width: 600px) {
  .header {
    padding: 1rem;
  }
  .logo {
    display: flex;
    align-items: center;
    width: 170px;
    height: 15px;
  }
  .main-content {
    padding: 24px 16px;
  }
  .icon-button{
    width: 28px;
    height: 28px;
    background: #fff;
    border: none;
  }

  .icon-button img {
    margin-right: 0;
  }
  .expert-section {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 50px;
  }

  .support-section p {
    font-size: 14px;
  }
  .support-section h1{
    font-size: 30px;
  }
  .expert-text h2 {
    font-size: 22px;
  }
  
  .contact-button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    padding: 8px 14px;
  }

  .explore-button-container-footer{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .explore-button-container-footer a{
    width: 358px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 390px) {
        .contact-button {
        width: 143px;
        height: 34px;
        font-size: 11px;
        padding: 8px 14px;
    }
}

@media (max-width: 380px) {
        .contact-button {
        width: 123px;
        height: 34px;
        font-size: 11px;
        padding: 8px 14px;
    }
}
