/* General Styles */
body {
  font-family: sans-serif;
  background: linear-gradient(to bottom, #8745ea, #eb0018);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: auto;
    margin-bottom: auto;
}

/* Header */
.header {
  background: linear-gradient(to right, #8745ea, #eb0018);
  color: white;
  padding: 2.5rem 0;
  text-align: center;
  display: flex;
    flex-direction: column;
    min-height: 76vh;
}

.header h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: -0.25rem;
}

.header p {
  font-size: 1.25rem;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.cta-button {
  background-color: #facc15;
  color: #000000;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: background-color 0.3s;
  
}

.cta-button:hover {
  background-color: #eab308;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0 0 0;
}

.rating-star {
  font-size: 1.5rem;
  color: #facc15;
}

.rating span {
  margin-left: 0.2rem;
    font-size: 1.25rem;
}

/* Benefits */
.benefits {
  padding: 4rem 0;
}

.benefits h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #1f2937;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.benefit-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.benefit-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-0.5rem);
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #b91c1c;
}

.benefit-card p {
  color: #4b5563;
  font-size: 1rem;
}

/* Order Form */
.order {
  padding: 4rem 0;
  background: linear-gradient(to right, #f3f4f6, #e5e7eb);
  border-radius: 0.75rem;
}

.order h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #1f2937;
}

.order-form {
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.order-form div {
  margin-bottom: 1.5rem;
}

.order-form label {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.order-form input,
.order-form textarea {
  width: 100%;
  padding: 1rem;
  border-width: 2px;
  border-color: #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  ring-width: 2px;
  ring-color: #b91c1c;
  border-color: transparent;
}

.order-form button {
  width: 100%;
  background-color: #b91c1c;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.25rem;
  transition: background-color 0.3s;
}

.order-form button:hover {
  background-color: #dc2626;
}

.order-form p {
  text-align: center;
  color: #6b7280;
  margin-top: 1rem;
}

.messenger-link {
  color: #b91c1c;
  text-decoration: underline;
}

.messenger-link:hover {
  color: #dc2626;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer p {
  margin: 0;
}

.logo {
    background: white;
    border-radius: 30px;
    padding: 12px;
    width: 33%;
}


@media only screen and (max-device-width: 480px) {
.logo {
    background: white;
    border-radius: 30px;
    padding: 12px;
    width: 76%;}
    
    .mes {
     width: 20%;
}


}