body {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
  background-color: #fff;
  color: #000;
  line-height: 1.6;
}

a {
  color: #000;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 100;
  border: none;
}

a p { 
  text-decoration: none
}

nav {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.d50{
  font-family: "Russo One", sans-serif;
}
.logo {
  padding: 2rem 0;
}
.logo span {
  font-family: "Russo One", sans-serif;
  font-size: 5rem;
  line-height: 5rem;
}
.logo h4 {
  margin: 0;
}
nav .logo {
  display: flex;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #007bff;
}

.hero {
  padding: 100px 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  flex: 1;
  width: 100%;
  align-items: center;
}

.logo-wrapper {
  width: 100%;
  display: flex;
  justify-content: center; /* Center the logo horizontally */
}

.hero-content .logo {
  width: auto;
  height: auto;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: none;
  margin: 0 auto;
}

.hero-text {
  width: 66.66%; /* 8/12 = 66.66% */
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #000;
}

.hero p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 30px;
}

.features h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #000;
}

.tools > h4 {
  text-transform: uppercase;
  font-weight: 400;
  align-items: center;
  flex: 0 0 80px;
  display: grid;
  place-items: center;
}
.tools {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  width: 100%;
  gap: 20px;
}

.features-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}

.tools a {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.3s;
  flex-grow: 1;
  flex-basis: 0;
  text-decoration: none;
}

.tools.nope a {
  box-shadow:0 0 0;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  margin-bottom: -0.1rem;
  height: 1.5rem;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.2);
}

.feature-card h3 {
  font-size: 1.5rem;
  padding: 20px;
  margin: 0;
  color: #000;
}

.feature-card p {
  font-size: 1rem;
  padding: 0 20px 20px;
  color: #333;
}

.pricing ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: center;
}

.pricing ul li {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

footer {
  color: #000;
  text-align: center;
  padding: 20px 0;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  color: #000;
  text-decoration: none;
  margin-top: 20px;
  border: 1px solid #000;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content .logo {
    width: auto;
    border: 0;
    padding: 0;
  }

  .logo-wrapper {
    width: 100%;
    justify-content: center;
    display: flex;
  }

  .hero-text {
    width: 100%;
  }
  .feature-card {
    flex-basis: auto;
  }
  .tools {
    flex-direction: column;
  }
  .tools.nope {
    flex-direction: row;
  }
  .tools a {
    flex-basis: content;
  }
}
