* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  background-color: #e5e5e5;
}

.container {
  max-width: 134rem;
  margin: 0 auto;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
}

.creametech-header {
  display: grid;
  justify-content: center;
  padding: 5rem 2rem 0rem;
  margin-bottom: 5rem;
}

.creametech-logo {
  width: 40rem;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.coming-soon-message {
  font-size: 5rem;
  line-height: 12rem;
  margin-bottom: 3rem;
  text-align: center;
}

.about-us {
  margin: auto;
  padding: 0 2rem;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 18px;
}

.about-us-columns {
  display: grid;
  grid-template-columns: 1fr;
}

.column {
  margin-bottom: 2rem;
}

.column:last-child {
  margin-bottom: 5rem;
}

.coming-soon {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 2rem;
  justify-items: center;
  text-align: center;
}

.coming-soon h1 {
  font-size: 5rem;
  line-height: 5.5rem;
  margin-bottom: 2rem;
}

.coming-soon h2 {
  font-size: 4rem;
  line-height: 4.5rem;
  margin-bottom: 2rem;
}

.coming-soon p {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.company-profile {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 2rem;
  text-align: center;
  justify-items: center;
}

.company-profile h2 {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.company-profile p {
  font-size: 2.2rem;
  line-height: 3rem;
  margin-bottom: 2rem;
}

.company-profile ul {
  list-style: none;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 6rem;
  margin-bottom: 2rem;
}

.services {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 2rem;
  text-align: center;
  justify-items: center;
  margin-bottom: 2rem;
}

.services-content h2 {
  font-size: 4rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 2rem;
  text-align: center;
  justify-items: center;
  margin-bottom: 2rem;
}

.contact .contact-content {
  font-size: 2.5rem;
  line-height: 3rem;
  letter-spacing: 0.07em;
}

.email {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 2rem;
  text-align: center;
  justify-items: center;
  margin-bottom: 2rem;
}

.email .email-content {
  font-size: 2.5rem;
  line-height: 3rem;
  letter-spacing: 0.07em;
}

.footer {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 2rem;
  text-align: center;
  justify-items: center;
  margin-bottom: 2rem;
}

.address {
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.address-mumbai {
  margin-bottom: 1rem;
}
.copyright {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 2rem;
}

a:link,
a:visited {
  color: #555; /* default link color */
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

a:hover {
  color: #007aff; /* color when mouse hovers */
}

a:active {
  color: #f96300; /* color when clicking (mouse down) */
}
