/* Tailwind CSS base (semplificato, estratto dalle classi usate nel tuo HTML) */

/* Font e Body */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #f9f9f9;
  color: #333333;
  overflow-x: hidden;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #28bbcb, #2dd6b7);
  color: white;
  padding-top: 4rem;  /* py-16 = 64px */
  padding-bottom: 4rem;
  text-align: center;
  padding-left: 1.5rem;  /* px-6 = 24px */
  padding-right: 1.5rem;
}

/* Images */
img.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

img.max-w-\[160px\] {
  max-width: 160px;
}

img.mb-2 {
  margin-bottom: 0.5rem;
}

/* Headings */
h1.text-5xl {
  font-size: 3rem;  /* 48px */
  line-height: 1;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  h1.md\:text-6xl {
    font-size: 3.75rem;  /* 60px */
  }
}

h2.text-4xl {
  font-size: 2.25rem; /* 36px */
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  h2.md\:text-5xl {
    font-size: 3rem; /* 48px */
  }
}

/* Paragraph */
p.text-lg {
  font-size: 1.125rem; /* 18px */
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  p.md\:text-xl {
    font-size: 1.25rem; /* 20px */
  }
}

/* Buttons */
a.bg-white {
  background-color: white;
  color: #28bbcb;
  padding-left: 1.5rem; /* px-6 = 24px */
  padding-right: 1.5rem;
  padding-top: 0.75rem;  /* py-3 = 12px */
  padding-bottom: 0.75rem;
  border-radius: 9999px;  /* rounded-full */
  font-weight: 600;
  font-size: 1.125rem; /* text-lg = 18px */
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease-in-out;
}

a.bg-white:hover {
  background-color: #f3f4f6; /* hover:bg-gray-100 */
}

/* Features section */
section.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

section.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.max-w-6xl {
  max-width: 72rem; /* 1152px */
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: 1.5rem; /* gap-6 = 24px */
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

article.bg-white {
  background-color: white;
  border-radius: 0.75rem; /* rounded-xl */
  padding: 1.5rem; /* p-6 */
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1),
              0 1px 2px rgb(0 0 0 / 0.06); /* shadow-md */
}

article p {
  margin-top: 0.25rem;
}

/* Colored headings inside articles */
h3.text-\[\#28bbcb\] {
  color: #28bbcb;
  font-weight: 600;
  font-size: 1.25rem; /* text-xl */
  margin-bottom: 0.5rem;
}

/* Additional SEO Content */
.max-w-4xl {
  max-width: 56rem; /* 896px */
  margin-left: auto;
  margin-right: auto;
}

section.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

ul.list-disc {
  list-style-type: disc;
}

ul.list-inside {
  list-style-position: inside;
}

ul.mb-6 {
  margin-bottom: 1.5rem;
}

/* CTA Section */
.bg-\[\#28bbcb\] {
  background-color: #28bbcb;
}

.text-white {
  color: white;
}

.text-center {
  text-align: center;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.text-lg {
  font-size: 1.125rem;
}

/* Footer */
.text-gray-600 {
  color: #4b5563;
}

.text-sm {
  font-size: 0.875rem;
}

footer.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

footer.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

a.text-\[\#28bbcb\] {
  color: #28bbcb;
  font-weight: 500;
  text-decoration: none;
}

a.text-\[\#28bbcb\]:hover {
  text-decoration: underline;
}
