body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  padding: 20px;
  background: #fff;
  width: 100%;
  text-align: center;
}

.logo {
  max-width: 500px;
}

main {
  max-width: 800px;
  padding: 20px;
  text-align: center;
}


.contact {
  background: #f9f9f9;
  padding: 40px 20px;
  width: 100%;
  text-align: center;
}


.contact h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #e91e63;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.contact input,
.contact textarea {
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  color: #333;
  outline: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #e91e63;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
}



.contact button {
  padding: 12px;
  font-size: 1rem;
  background-color: #e91e63;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact button:hover {
  background-color: #d81b60;
}


footer {
  margin-top: 40px;
  padding: 10px;
  font-size: 0.9em;
  color: #999;
}

footer .powered-by {
  font-size: 0.75rem;
  color: #999;
  margin-top: 5px;
}

footer .powered-by a {
  color: #999;
  text-decoration: none;
}

footer .powered-by a:hover {
  text-decoration: underline;
}



.about {
  padding: 20px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #e91e63;
  text-transform: uppercase;
}

.about p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* fixes alignment */
  max-width: 600px;
}

.about ul li {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  line-height: 1.5;
}


.about ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #4caf50;
  font-weight: bold;
}

.about a[href^="tel:"] {
  color: #e91e63;
  text-decoration: none;
  font-weight: bold;
}

.about a[href^="tel:"]:hover {
  text-decoration: underline;
}
.phone-number {
  font-size: 1.5rem; /* increase as needed */
  color: #e91e63;
}
