
.main-content {
  flex-grow: 1;
  padding: 40px;
  background-color: white;
  margin-top: 5% !important;
}

h2, h3 {
  color: #354b6e;
  margin-bottom: 12px;
}

.intro, .mission {
  font-size: 16px;
  color: #333;
  margin-bottom: 16px;
}

.diamond-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.diamond-section h2 {
  font-size: 30px;
  color: #1c2c44;
  margin-bottom: 10px;
}

.diamond-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.card {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 500px;
  background-color: #fff;
  border: 2px solid #0c5390;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.card h3,
.comparison-table h3,
.diamond-trust h3,
.diamond-card h3 {
  font-size: 22px;
}

.card h3 {
  margin-bottom: 12px;
  color: #34495e;
}

.card ul li,
.card strong {
  font-size: 14px;
  padding-left: 5px;
  list-style-type: disc;
  color: #000;
  line-height: 1.6;
}

.comparison-table {
  padding: 40px 20px;
  background-color: white;
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
}

.comparison-table h3,
.diamond-trust h3 {
  margin-bottom: 20px;
}

.comparison-table h3 span {
  font-size: 18px !important;
}

.comparison-table table {
  width: 100%;
  max-width: 900px;
  border-collapse: collapse;
  font-size: 15px;
  margin: 0 auto;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid black;
  padding: 12px 16px;
  text-align: left;
}

.comparison-table th {
  background-color: #0c5390;
  color: white;
  font-size: 18px;
}

.comparison-table td {
  font-size: 16px;
}

/* .comparison-table tbody tr:nth-child(even) {
  background-color: #f4f4f4;
} */

.diamond-trust {
  padding: 40px 20px;
  background-color: #fdfdfd;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.trust-points {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  margin-bottom: 20px;
  gap: 12px;
}

.trust-points li {
  font-size: 16px;
  list-style: none;
}

.mission {
  font-size: 16px;
  font-style: italic;
}

.diamond-compare {
  padding: 40px 20px;
  background-color: #fff;
  max-width: 1000px;
  margin: 0 auto;
}

.diamond-compare-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.diamond-card {
  background-color: #f8f8f8;
  border: 1px solid #0c5390;
  border-radius: 12px;
  padding: 20px;
  max-width: 450px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.diamond-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 2px solid #354b6e;
}

.diamond-card h3 {
  margin-bottom: 15px;
}

.diamond-card ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.diamond-card ul li {
     font-size: 14px;
    margin-bottom: 6px;
}






/* banner image*/

.image-area {
  width: 100%;
  /* Set to your image's width */
  height: 400px;
  /* Set to your image's height */
  background-image: url('bg\ page.jpeg');
  /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* subscribe*/

.sub {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background-color: #373f4a;
  padding: 6px 30px;
  color: white;
  flex-wrap: wrap;
}

.sub-left {
  font-size: 1rem;
  font-weight: lighter;
  white-space: nowrap;
}

.sub-center {
  display: flex;
  justify-content: center;
  gap: 0.1rem;
  flex-wrap: wrap;
}

.email-input {
  padding: 5px 10px;

  border: none;
  width: 200px;
  font-size: 0.75rem;
}

.subscribe-btn {
  padding: 5px 30px;
  background-color: white;
  color: #373f4a;
  border: none;

  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #ddd;
}

.sub-right {
  display: flex;
  gap: 14px;
}

.sub-right img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.sub-right img:hover {
  transform: scale(1.1);
}


@media (max-width:640px) {
  .diamond-section h2 {
    font-size: 26px;
  }

  .intro, .mission {
    font-size: 13px;
  }

  .card h3, .comparison-table h3, .diamond-trust h3, .diamond-card h3 {
    font-size: 20px;
  }

  .card ul li, .card strong {
    font-size: 12px;
  }

  .comparison-table th {
    font-size: 16px;
  }

  .comparison-table td {
    font-size: 13px;
  }

  .diamond-card ul li {
    font-size: 12px;
  }
}

@media (max-width:480px) {

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
  }
}

@media (max-width:425px) {
  .comparison-table {
    padding: 0px;
  }

  .diamond-compare {
    padding: 0px;
  }

  .card {
    padding: 10px;
  }
}