body,
html {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  background: #f0f2f5;
}

.header {
  background: linear-gradient(135deg, #29272b 0%, #313131 100%);
  color: white;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-title {
  margin-left: 20px;
}

.logo {
  width: 40px;
  height: 40px;
  background-image: url('https://rakurs-static-files.s3.us-west-1.amazonaws.com/logo/Back.png');
  background-size: cover;
  border-radius: 50%;
}

.hero {
  background: linear-gradient(120deg, #24ac33 0%, #116950 100%);
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.title {
  font-size: 42px;
}

.subtitle {
  font-size: 32px;
}

.download-link {
  display: block;
  margin-top: 30px;
}

.hero a[href^="https://tatrck.com/"]
{
  display: block !important;
}

.features,
.gallery {
  padding: 40px 20px;
  text-align: center;
}

.feature,
.screenshot {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon {
  color: #4caf50;
  font-size: 24px;
  margin-right: 10px;
}

.gallery {
  background: linear-gradient(120deg, #12551a 0%, #116950 100%);
  color: white;
  padding: 30px 20px;
}

.screenshots-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.screenshot img {
  width: 100%;
  max-width: 500px;
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.contact {
  background: #333;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

button {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

button:hover {
  transform: scale(1.05);
}

a {
  color: #ddd;
}

a:hover {
  color: #fff;
}

.lighter {
  font-weight: lighter;
}

.bolder {
  font-weight: bolder;
}

.more {
  margin-top: 40px;
}
