/* Default CSS */
/* Generated by the CoffeeCup HTML Editor - www.coffeecup.com */
/* Container for Services Section */
.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Section Title */
.services-container h1 {
  font-size: 2.5em;
  color: #fff; /* Adjust to your brand color */
  margin-bottom: 20px;
  text-align: center;
}

/* Service Cards or Blocks */
.service-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Service Titles */
.service-item h1,h2 {
  font-size: 1.5em;
  color: #fff; /* Another brand accent */
  margin-bottom: 10px;
  display:block;
  text-align:center;
}

/* Service Descriptions */
.service-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
}

/* Responsive Layout */
@media (min-width: 768px) {
  .service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.back-to-top {
  color: #ffffff;         /* White text */
  text-decoration: none;  /* Optional: removes underline */
}

.back-to-top:hover,
.back-to-top:focus,
.back-to-top:active {
  color: #ffffff;         /* Keeps it white on interaction */
  text-decoration: none;  /* Optional: keeps it clean */
}

.back-to-top {
  display: block;           /* Makes the link behave like a block element */
  text-align: center;       /* Centers the text inside the block */
  color: #ffffff;           /* White text */
  text-decoration: none;    /* Optional: removes underline */
  margin: 20px auto;        /* Adds spacing and centers the block itself */
}