/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
/* Font Import */

/* Default CSS */
* {
    font-family: 'Ubuntu',sans-serif !important;
    text-decoration: none;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: none;
}

body {
  background: #f2f2f2;
}

/* Default CSS */
.container {width: 100%;margin-right: auto;margin-left: auto;max-width: 100%;padding: 0;background: #F2F2F2;}
header{position: sticky; top: 0; width: 100%; z-index: 99; height: 100px; display: flex; background-color: #2A1D30;}
#web.android header { background-color: #000; }
header .logo { width: 142px; }
header .header-content{width: 100%; max-width: 95%; margin: 0 auto; padding: 0 25px; display: flex; justify-content: space-between; align-items: center;}

header .header-content .external-link{ display: flex;align-items: center;color: #F2B705;text-align: center;font-size: 17px;font-style: normal;font-weight: 700;line-height: normal;border: 1px solid #F2B705;padding: 10px;height: max-content;border-radius: 4px;}
#web .content{max-width: 95%;margin: 10px auto; width: 100%; padding: 0 25px;background: #ffffff;padding-bottom: 48px;}
#web.android .content { margin-bottom: 30px; }
#web h1 { text-align: left; margin-bottom: 30px; color: #232220; font-size: 24px; font-style: normal; font-weight: 700; line-height: normal; }
.bigSection { display: flex; align-items: flex-start; padding-top: 34px;}
.bigSection .text { width: calc(85% - 467px); font-size: 24px; color: #000; line-height: 1.3;  } 
.bigSection .text .first-desc {margin-bottom: 15px;}
.bigSection .text p { color: #2A1D30; font-size: 16px; font-style: normal; font-weight: 400; line-height: 22px;}
.bigSection .text strong { font-weight: 600; }
.bigSection .main-picture { max-width: 562px; width: 100%; } 

.install-qr {display: flex; gap: 21px;margin-top: 30px;}
.install-qr .install-with-logo{ display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 16px;}
.install-qr .install-with-logo img {max-width: 100%; height: 50px;}
.install-qr .install-with-logo .qr-text {color: #232220; font-size: 24px; font-style: normal; font-weight: 700; line-height: normal;}
.install-qr .install-images-wrapper { display: flex; gap: 10px;}

.mobileAppsWrapper {display: flex; margin-top: 41px; flex-direction: column; gap: 30px; }
.mobileAppsWrapper h2 {color: #232220;font-size: 24px; font-style: normal; font-weight: 700; line-height: normal;}
.mobileApps { display: flex; justify-content: flex-start; align-items: flex-end; gap: 10px;}
.mobileApps a { text-decoration: none; }
.mobileApps img { width: 100%; } 


#web footer { margin-top: 50px; background:#2A1D30;width: 100%;font-size: 14px;line-height: normal;text-align: center;color: #fff; height: 56px; display: flex; align-items: center; justify-content: center; gap: 15px;}

.downloadBarWrapper { display: flex; align-items: center; justify-content: center; height: 74px; background-color: #000; position: sticky; bottom: 0; }
.downloadBarWrapper a { height: 40px; max-width: 286px; background-color: #d0261b; color: #fff; display: flex; align-items: center; padding: 0 20px; border-radius: 4px; }
.downloadBarWrapper img { width: 25px; } 
.downloadBarWrapper span { font-size: 14px; font-weight: bold; line-height: normal; margin-left: 10px; } 

.mobileAppsViewWrapper {display: none;}

/* Collapsible Section Styles */
.collapsible {
  background-color: #f2f2f2;
  max-width: 95%;
  margin: 0px auto;
  border-radius: 5px;
  margin-bottom: 15px;
  display: none;
}

.collapsible-header {
  background-color: #ffffff;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  color: #3B2E40;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.collapsible-header.active {
  opacity: 1;
}

.collapsible-header svg {
  float: right;
}

.collapsible-header.active svg {
  transform: rotate(180deg);
}

.collapsible-content {
  padding: 0px 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: white;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.collapsible.active .collapsible-content {
  padding-bottom: 10px;
}

.collapsible-content h2 {
  color: #3B2E40;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 2px;
}
.collapsible-content p {
  color: #3B2E40;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px;
  margin-bottom: 4px;
  margin-top: 4px;
}

.collapsible-content .show-more {
  display: block;
  margin-top: 10px;
  color: #232220;
  font-weight: bold;
  text-align: right;
  cursor: pointer;
}

.collapsible-header.collapsed {
  opacity: 0.7;
}

.collapsible-content.expanded {
  max-height: none;
}



@media only screen and (max-width: 767px) {
    header { height: 60px; margin-bottom: 15px; }
    #web.android header { height: 50px; }
    header .logo { width: 117px; }
    #web.android header .header-content .external-link { font-size: 16px; font-weight: bold; } 
    header .header-content .external-link { font-size: 11px; } 
    header .header-content .external-link img { width: 15px;height: auto; margin-right: 5px; } 
    header .header-content,
    #web .content { padding: 0 15px; }
    #web h1 { font-size: 24px; line-height: normal; margin-bottom: 15px; }

    .bigSection { flex-direction: column; align-items: center; padding-bottom: 35px; }
    .bigSection .main-picture { max-width: 100%; }

    .bigSection .text { display: none;}
    
    .mobileAppsViewWrapper {display: flex; flex-direction: column; gap: 30px; }
    .mobileAppsViewWrapper .mobile-content { color: #2A1D30; font-size: 12px; font-style: normal; line-height: normal;}
    #mobileAppsView { display: flex; justify-content: center; align-items: center; flex-direction: column;}
    #mobileAppsView a {
      text-decoration: none;
      color: #232220;
      font-size: 16px;
      font-style: normal;
      line-height: 1.6;
    }
    #mobileAppsView p { text-align: center; margin-bottom: 15px;}
    #mobileAppsView strong { font-weight: bold; }
  
    #web footer { font-size: 12px;}
}


@media only screen and (min-width: 768px) and (max-width: 1023px) { 

    header .logo { width: 180px; }

    .bigSection .text { width: calc(100% - 300px); }
    .bigSection .main-picture { max-width: 400px!important; } 

    .install-qr {  margin-top: 40px;}
    .mobileAppsWrapper {margin-top: 30px;}
    
    .mobileApps { gap: 10px; flex-direction: column; align-items: flex-start;}

} 