@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #f4f6f9;
  color: #333;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

main {
  padding: 2rem;
  max-width: 1120px;
  margin: auto;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 2rem;
  max-width: 1120px;
  margin: auto;
}

.back-link {
  font-weight: bold;
  color: hsl(255, 12%, 12%);
  text-decoration: none;
}

.logo {
  width: 100px;
  height: auto;
}

.hero-message {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin: 2rem auto;
  max-width: 1000px;
}

.hero-text {
  flex: 1;
  min-width: 250px;
}

.hero-text h1 {
  text-align: center;
  margin-bottom: 1rem;
  color: #0d47a1;
  font-size: 3rem;
  font-weight: 700;
}

.hero-text p {
  text-align: left;
}

.hero-image {
  flex: 1;
  min-width: 250px;
  text-align: right;
}

.hero-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: contain;
  margin: auto;
}

.section {
  margin-bottom: 2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.subtitle{
  color: hsl(255, 12%, 12%);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.card {
  background: #fdfdfd;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.card i {
  font-size: 1.5rem;
  color: #0d47a1;
  margin-bottom: 0.5rem;
  display: block;
}

.card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

ul li {
  margin-bottom: .75rem;
}

ul li i{
  color: red;
  margin-right: .3rem;
}

.contact {
  text-align: center;
  background-color: #e3f2fd;
  border-left: 5px solid #0d47a1;
  padding: 1rem;
  margin-top: 2rem;
  border-radius: 10px;
  font-size: 1rem;
  color: #0d47a1;
}

.button {
  background-color: #0d47a1;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
  transition: background-color 0.2s ease;
}

.button:hover {
  background-color: #08306b;
}

footer {
  background: #0c1f32;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  body {
    font-size: 0.95rem;
  }

  .hero-text h1 {
    font-size: 2rem;
    text-align: center;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 1rem;
  }

  ul li {
    font-size: 0.95rem;
  }

  .contact p {
    font-size: 1rem;
  }

  .button {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
}


@media screen and (min-width: 1024px) {
  .logo {
    width: 150px;
  }

  .hero-text h1 {
    text-align: initial;
  }
}


