/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section-light {
  background: #ffffff;
}

.section-accent {
  background: #1a73e8;
  color: white;
}

/* HEADINGS */
h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

p {
	margin-bottom: 15px;
	font-size: 16px;
	color: #009;
}

/* BUTTON */
button {
  background: #1a73e8;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #155ab6;
}

/* FORM */
form input {
  width: 280px;
  padding: 10px;
  margin: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* INFOGRAPHIC */
.infographic-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.infographic-slice {
  position: relative;
  width: 220px;
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.infographic-slice img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(26,115,232,0.85);
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  opacity: 0;
  transition: 0.3s;
}

/* REVIEWS */
.reviews {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }

  .infographic-slice {
    width: 180px;
    height: 180px;
  }
}
