* {
    box-sizing: border-box;
  }
body{
  font-family: 'Inter' !important;
}


  .headerWrapper {
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 155px;
    margin-bottom: 20px;
}

 .headerLogo {
    height: 50px;
}

  .searchFieldContainer {
    flex: 1;
    margin: 0 40px;
  }

  .searchFieldInput {
    width: 100%;
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    height: 56px;
}

  .headerRightSection {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .iconBox {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 8px;
    position: relative;
    cursor: pointer;
  }

  .iconImage {
    height: 20px;
  }

  .userProfileArea {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
  }

  .userProfileImage {
    height: 32px;
    width: 32px;
    border-radius: 50%;
  }

  .profileMenu {
    position: absolute;
    top: 42px;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: none;
    min-width: 150px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 10;
  }

  .profileMenuItem {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
  }

  .profileMenuItem:hover {
    background: #f5f5f5;
  }

  .userProfileArea:hover .profileMenu {
    display: block;
  }

.contact-text {
    display: grid;
    row-gap: 10px;
}







.paper{
  padding: 10px 195px;
}

footer {
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    column-gap: 212px;
    margin-top: 30px;
}
  
  .footer-logo-block {
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-logo-block img {
    margin-bottom: 12px;
  }
  
  .footer-logo-block p {
    font-size: 12px;
    color: #555;
    line-height: 1.4;
    margin: 0;
  }
  
  
  .footer-column h4 {
    font-size: 14px;
    color: #000;
    margin-bottom: 12px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column li {
    margin-bottom: 8px;
  }
  
  .footer-column a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    transition: color 0.3s;
  }
  
  .footer-column a:hover {
    color: #ffcd00;
  }
  
  .contact-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 300px;
  }
  
  .contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  
  .icon-circle {
    width: 40px;
    height: 40px;
    background-color: #ffcd00;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
  }
  
  .contact-text p {
    font-size: 14px;
    color: #0c0c0c;
    margin: 0;
    line-height: 1.5;
  }

.footer-columns-area {
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    column-gap: 120px;
}

@media only screen and (max-width: 1399px)
{
  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 50px;
}
}

@media only screen and (max-width: 1199px)
{
  .footer-columns {
    column-gap: 20px;
}
.footer-columns-area {
    flex-direction: column;
    row-gap: 40px;
}
}

@media only screen and (max-width: 991px)
{
  .footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
}
.headerWrapper {
      flex-direction: column;
      align-items: flex-start;
      padding: 15px 20px;
      gap: 16px;
      display: none;
    }
    .panel2 {
    display: none;
  }
  .autokey-mobile-header {
      display: flex;
    }
    .page {
    width: 100% !important;
  }
}

  @media (max-width: 768px) {
    .panel2{
      display: none;
    }
    .page{
      width: 100% !important;
    }
    
    .headerWrapper {
      flex-direction: column;
      align-items: flex-start;
      padding: 15px 20px;
      gap: 16px;
    }
  
    .searchFieldContainer {
      margin: 0;
      width: 100%;
    }
  
    .headerRightSection {
      width: 100%;
      justify-content: space-between;
      flex-wrap: wrap;
    }
  
    .userProfileArea span {
      display: none; 
    }
    
  
    .searchFieldContainer {
      margin: 0;
      width: 100%;
    }
  
    .headerRightSection {
      width: 100%;
      justify-content: space-between;
      flex-wrap: wrap;
    }
  
    .userProfileArea span {
      display: none; 
    }
  }

  @media only screen and (max-width: 475px)
  {
    .footer-columns {
    grid-template-columns: repeat(1, 1fr);
}
  }