* {
    margin: 0;
    padding: 0;
    /* background-color: #dddbea; */
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: grid;
    grid-template-rows: auto 1fr auto;
    background-color: aliceblue;
  }

.main-menu {
    position: sticky;
    top: 0;
    padding: 5px;
    background-color: white;
    border-bottom: 2px solid gray;
    z-index: 3;
}

.main-menus {
    list-style: none;
}

.main-title {
    font-weight: 600;
    font-size: 42px;
    line-height: 52px;
    color: #33333b;
    text-align: center;
    margin: 25px auto;
    max-width: 1100px;
}

.main-subtitle {
    line-height: 32px;
    font-size: 22px;
    font-weight: 400;
    color: #47474f;
    max-width: 980px;
    margin: 0 auto;
}

.tool-block {
  display: grid;
  grid-template-columns: auto auto auto;
  /* background-color: dodgerblue; */
  padding: 10px;
  max-width: 1100px;
  margin: 25px auto;
  gap: 20px;
}

tool-block1 div {
  background-color: #f1f1f1;

}

/* .tool-block1 div {
  background-color: #f1f1f1;
  border: 1px solid black;
  padding: 10px;
  font-size: 30px;
  text-align: center;
} */

.tool-item-name {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #33333b;
    margin-bottom: 8px;
}

.tool-item {
    background: #fff;
    /* border: 1px solid #d6d6df; */
    border-radius: 16px;
    border: 1px solid black;
    margin: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: opacity .5s, -webkit-transform .5s;
    transition: opacity .5s, -webkit-transform .5s;
    -o-transition: transform .5s,opacity .5s;
    transition: transform .5s, opacity .5s;
    transition: transform .5s, opacity .5s, -webkit-transform .5s;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.tool-item-anchor {
    display: block;
    padding: 32px;
    position: relative;
    z-index: 2;
    text-decoration: none;
    font-weight: 400;
}

a:hover {
    text-decoration: none !important;
}

.tool-item-content {
    line-height: 18px;
    font-weight: 400;
    letter-spacing: .3px;
    font-size: 14px;
    color: #707078;
}

.coming-soon {
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
}

.coming-soon::after {
  content: "Coming Soon";
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ff3b3b;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-family: 'Segoe UI', sans-serif;
}

.page-layout {
    max-width: 1100px;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
}

.contact-email {
    color: #f1f1f1;
}

.footer {
    background-color: #333;
    display: block;
    height: 200px;
}

.about-us, .contact-us {
    margin: 40px 0px;
}

.privacy-message {
  background: linear-gradient(135deg, #5fc258, #95a1a2);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin: 40px auto;
  text-align: center;
  font-family: "Segoe UI", Arial, sans-serif;
}
