/* Reset basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: #444;
  line-height: 1.75;
}

.orange-text{
  color: #8bb6ad;
}
.white-text{
  color: rgb(126, 8, 77);
}

/* Container */
.container {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 0;
}

/* Header */
header {
  background-color: #1c3a3e;
  background: linear-gradient(45deg, #1c3a3e 0%, #62929e 50%, #a3c5c7 100%);
  padding: 25px 0;
  color: #ffffff;
}

header h1 {
  text-align: left;
  font-size: 3rem;
}

header h2 {
  text-align: left;
  font-size: 1.2rem;
  margin-top: 10px;
}

nav {
  display: flex;
  justify-content: right;
  margin-top: 15px;
  overflow-x: auto;
}

nav ul {
  display: flex;
  justify-content: flex-start;
}

nav ul li {
  list-style: none;
  margin: 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #c3dfe6;
}

/* Provider Block Section */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 50px 0;
}

.provider-block {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: left;
  padding: 20px;
}

.provider-block img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.provider-block h3 {
  font-size: 1.4rem;
  margin: 15px 0;
  color: #2a4858;
}

.provider-block:hover {
  transform: translateY(-12px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Deal Block Section */
.deal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  padding: 30px 0;
}

.deal-block {
  background-color: #e6eff1;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
}

.deal-block img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.deal-block h3 {
  font-size: 1.4rem;
  margin: 20px 0;
  color: #3a657d;
}

.deal-block:hover {
  transform: translateY(-12px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* List styling */
ul:not(header ul) {
  list-style-type: square;
  padding-left: 20px;
  margin: 25px 0;
}

li:not(header li) {
  position: relative;
  font-size: 1.2rem;
  padding: 12px 0;
  color: #555;
}

li:not(header li):before {
  content: '◆';
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #3a657d;
}

/* Responsive Text Scaling */
h1, h2, h3 {
  line-height: 1.2;
}

h2 {
  font-size: 2.8rem;
}

@media (max-width: 768px) {
  h2 {
      font-size: 2.4rem;
  }

  nav ul {
      justify-content: flex-start;
  }

  nav ul li a {
      color: #ffffff;
  }

  .provider-block h3, .deal-block h3 {
      font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  h2 {
      font-size: 2rem;
  }
}
