* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  font-family: Arial, sans-serif;
  background: #fff;
} */
.cursive_center {
  text-align: center;          /* center align */
  font-family: cursive; 
  color: white;        /* cursive style */
}
/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 20px;
  
}

/* Tablet */
@media (min-width: 600px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 992px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.card {
  text-align: center;
}

/* Image */
.image-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Hover effect */
.image-link:hover img {
  transform: scale(1.03);
}

/* Title */
.title-link {
  text-decoration: none;
}

.title-link h3 {
  margin-top: 15px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #333;
}

/* Title hover */
.title-link:hover h3 {
  text-decoration: underline;
}

.privacy-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 25px;
  background: #7fe5e9;
  border-radius: 10px;
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.privacy-container h2 {
  margin-bottom: 10px;
}

.privacy-container p {
  margin-bottom: 15px;
}