/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f5f5f5;
  color: #333;
  font-family: "Lato", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Header Styles */
header {
  width: 100%;
  padding: 30px 0;
  background: #ffffff;
  border-bottom: 2px solid #ddd;
  display: flex;
  justify-content: center;
}

header img {
  width: 100px;
}

/* Index Container */
.index-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 80px);
  padding: 70px;
  background: linear-gradient(to bottom right, #e3e3e3, #f5f5f5);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.index-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.index-page-logo img,
.index-page-image img {
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.index-page-image img {
  max-height: 30vh;
}

.index-page-description {
  text-align: left;
}

.index-page-heading {
  font-family: "Cinzel", serif;
  font-weight: 300;
  margin-bottom: 10px;
  color: #444;
}

/* Section Styles */
.about-digital-gem,
.why-digital-gem,
.digital-gem-benefits {
  margin: 50px 0;
  padding: 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 80%;
}

.about-digital-gem h2,
.why-digital-gem h2,
.digital-gem-benefits h2 {
  font-family: "Cinzel", serif;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
  color: #555;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

.about-digital-gem p,
.why-digital-gem p,
.digital-gem-benefits ul {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  line-height: 1.8;
  color: #666;
}

.digital-gem-benefits ul {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  line-height: 1.8;
  text-align: justify;
  color: #666;
}

.about-digital-gem p,
.why-digital-gem p {
  text-align: center;
}

.digital-gem-benefits ul {
  list-style: none;
  padding-left: 0;
}

.digital-gem-benefits li {
  margin-bottom: 20px;
}

.digital-gem-benefits h3 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #444;
  margin-bottom: 10px;
}

.digital-gem-benefits p {
  margin-left: 20px;
}

/* Media Queries */
@media (max-width: 980px) {
  .index-container {
    height: auto;
    padding: 40px 20px;
  }

  .index-content {
    flex-direction: column;
    gap: 20px;
  }

  .index-page-logo img,
  .index-page-image img {
    max-width: 400px;
  }

  .index-page-image img {
    max-height: 40vh;
  }

  .index-page-description {
    text-align: center;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  header img {
    width: 80px;
  }

  .index-container {
    padding: 30px 15px;
  }

  .index-content {
    gap: 15px;
  }

  .index-page-image img {
    max-height: 35vh;
  }

  .index-page-description {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 20px 0;
  }

  header img {
    width: 60px;
  }

  .index-container {
    padding: 20px 10px;
  }

  .index-content {
    gap: 10px;
  }

  .index-page-logo img,
  .index-page-image img {
    max-width: 90vw;
  }

  .index-page-image img {
    max-height: 25vh;
  }

  .index-page-description h1 {
    font-size: 1.5rem;
  }

  .index-page-description h3 {
    font-size: 1rem;
  }

  .index-page-description {
    padding: 0 10px;
  }
}
