body {
    margin: 0;
    font-family: 'Unbounded', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000;
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

nav.hidden.lg\:block {
    font-family: 'Unbounded', sans-serif;
}

.min-h-screen {
    min-height: 100vh;
}

.min-w-screen {
    min-width: 100vw;
}

.bg-home-gradient {
    background: linear-gradient(to bottom, #e82633, #0c0c0c);
}

.bg-dark {
    background-color: #0c0c0c;
}

.cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.gap-10 {
    gap: 2.5rem;
}

.gap-20 {
    gap: 5rem;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.max-w-[600px] {
    max-width: 600px;
}

.w-full {
    width: 100%;
}

.text-[48px] {
    font-size: 48px;
}

.md:text-[64px] {
    font-size: 64px;
}

.font-bold {
    font-weight: bold;
}

.text-[16px] {
    font-size: 16px;
}

.md:text-[20px] {
    font-size: 20px;
}

.mt-[16px] {
    margin-top: 16px;
}

.mt-[10px] {
    margin-top: 10px;
}

.mt-[5px] {
    margin-top: 5px;
}

.h-[50px] {
    height: 50px;
}

.rounded-[8px] {
    border-radius: 8px;
}

.mt-[28px] {
    margin-top: 28px;
}

#home h1 {
    font-family: 'Unbounded', sans-serif;
}

#home p {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
}

a.download-button {
  width: 100%;
  height: 50px;
  background-color: #e82633;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: normal;
  cursor: pointer;
  transition: opacity 0.3s ease;
  font-family: 'Unbounded', sans-serif;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

a.download-button:hover {
  background-color: #ffffff;
  color: #e82633;
}

footer {
    background-color: #040404;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #1a1a1a;
    padding: 15px;
}

.slider {
    display: flex;
    gap: 10px;
}

.slide {
    flex: 0 0 calc(37% - 50px);
    box-sizing: border-box;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

#advantages {
  padding: 120px 2rem;
  min-width: 100vw;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  gap: 10rem;
  align-items: flex-start;
  justify-content: center;
  background-color: #0c0c0c;
  color: #ffffff;
}

#advantages .max-w-480 {
  max-width: 480px;
}

#advantages .grid {
  display: grid;
  margin-top: -1rem;
  width: 100%;
  max-width: 650px;
  gap: 50px;
}

#client {
  padding: 100px 2rem;
  min-width: 100vw;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  gap: 10rem;
  align-items: flex-start;
  justify-content: center;
  background-color: #0c0c0c;
  color: #ffffff;
}

#clientImage {
  position: relative;
  top: 68px;
  width: 470px;
  height: auto;
  margin-top: -50px;
}

a button {
  width: 100%;
  height: 50px;
  background-color: #e82633;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Unbounded', sans-serif;
  margin-top: 28px;
}

a button:hover {
  background-color: #ffffff;
  color: #e82633;
}

#support {
  padding: 70px 0px;
  background-color: #0c0c0c;
  color: #ffffff;
}

#support h2 {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  font-family: 'Unbounded', sans-serif;
}

#support p {
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
}

#support form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

#support label {
  font-size: 20px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
}

#support input,
#support textarea {
  width: 100%;
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
}

#support input:focus,
#support textarea:focus {
  font-weight: bold;
}

#support input {
  height: 50px;
}

#support textarea {
  height: 180px;
  resize: none;
}

#support button {
  width: 100%;
  height: 50px;
  background-color: #e82633;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Unbounded', sans-serif;
}

#support button:hover {
  background-color: #ffffff;
  color: #e82633;
}

#notification {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #4CAF50;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  z-index: 1000;
}

@media (max-width: 768px) {
    .fixed-header {
        padding: 10px 0;
    }
    .fixed-header nav {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
    .mobile-nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #000;
        z-index: 1000;
    }
    .mobile-nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    .mobile-nav ul li {
        text-align: center;
    }
    .slider-container {
        padding: 10px;
    }
    .slide {
        flex: 0 0 100%;
    }

    #advantages {
        flex-direction: column;
        gap: 2rem;
        padding: 60px 1rem;
    }

    #client {
        flex-direction: column;
        gap: 2rem;
        padding: 60px 1rem;
    }

    #clientImage {
        position: relative;
        top: -30px;
        width: 100%;
    }

    #support {
        padding: 40px 1rem;
    }

    #support form {
        gap: 10px;
    }

    #support input,
    #support textarea {
        padding: 8px 16px;
    }

    #support button {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .text-[48px] {
        font-size: 36px;
    }

    .md:text-[64px] {
        font-size: 48px;
    }

    .text-[16px] {
        font-size: 14px;
    }

    .md:text-[20px] {
        font-size: 16px;
    }

    .slide {
        height: 180px;
    }

    #advantages h2 {
        font-size: 36px;
    }

    #advantages p {
        font-size: 18px;
    }

    #client h2 {
        font-size: 36px;
    }

    #client p {
        font-size: 18px;
    }

    #support h2 {
        font-size: 36px;
    }

    #support p {
        font-size: 14px;
    }

    #support label {
        font-size: 16px;
    }

    #support input,
    #support textarea {
        font-size: 14px;
    }

    #support button {
        font-size: 16px;
    }
}