p {
  font-size: 1.8rem;
}

h1 {
  font-size: clamp(2.4rem, 4vw + 1rem, 5rem);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2.4rem;
}

.container-cover-gi {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.container-cover-gi .cover-gi {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  opacity: 0.6;
  display: block;
}

.text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.container-cover-gi h1, .container-cover-gi h2 {
  color: #FFFFFF;
  text-shadow: 1px 1px 4px black;
}

.offer, .included-services, .coworking-gallery {
  text-align: center;
  padding: 40px 20px;
  color: #333;
}

.offer h2, .included-services h2, .coworking-gallery h2 {
  color: #000000;
  margin-bottom: 20px;
}

.offer .intro-text, .included-services .intro-text {
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.services-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service img:hover {
  transform: scale(1.02);
}

.service-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.service-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.service-content p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-btn {
  align-self: flex-start;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

@media (min-width: 769px) {
  .service {
    flex-direction: row;
    align-items: stretch;
  }

  .service:nth-child(even) {
    flex-direction: row-reverse;
  }

  .service img {
    width: 50%;
    height: auto;
  }

  .service-content {
    width: 50%;
    padding: 3rem;
  }
}

.included-services {
  background-color: #f5f5f5;
  width: 100%;
  padding: 60px 20px;

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .service-item {
    text-align: center;
    padding: 20px;

    i {
      font-size: 5rem;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    h3 {
      font-size: 2rem;
      margin-bottom: 10px;
      color: #222;
      font-weight: 600;
      text-transform: uppercase;
    }

    p {
      color: #555;
      line-height: 1.5;
    }
  }
}

.container-service {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.container-service .image-service {
  width: 100%;
  height: 25vh;
  object-fit: cover;
  opacity: 0.6;
  display: block;
}

.container-service h1 {
  color: #FFFFFF;
  text-shadow: 1px 1px 4px black;
}

.coworking-gallery {
  background-color: #f5f5f5;
  width: 100%;
  padding: 60px 20px;
  text-align: center;
}

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

.image-wrapper {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-wrapper:hover img {
  transform: scale(1.02);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-wrapper:hover .overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 2rem 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-cards-1 {
  grid-template-columns: repeat(1, 1fr);
  min-width: 33%;
  display: inline-block;
}

.pricing-cards-1 .pricing-card {
  padding-left: 30px;
  padding-right: 30px;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.pricing-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.pricing-card ul li {
  margin: 0.5rem 0;
  font-size: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

@media (max-width: 992px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-cards-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 576px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  .pricing-cards-3 {
    grid-template-columns: 1fr;
  }

  .pricing-cards-1 {
    width: 100%;
  }
}

.checklist {
  list-style: none;
  text-align: left;
  margin-bottom: 5rem;
  width: 90%;
  margin: 0 auto 5rem auto;
  max-width: 700px;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  line-height: 1.5;

}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.legal-section {
  padding: 40px 20px;
  color: #333;
}

.legal-section a {
  color: #555;
}

.legal-section li {
  font-size: 1.8rem;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.8rem;
  color: #003366;
}

.legal-content li {
  color: #555;
}

.legal-content p {
  color: #555;
  margin: 0 auto 50px auto;
}

.legal-content ul {
  margin-left: 1.5rem;
  list-style-type: none;
}

.included-services a {
    color: #555;
}

.included-services a:hover {
  font-weight: bold;
}

.map iframe {
  margin-top: 0;
  margin-bottom: 5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
