/* =========================================================
   Base Page Styles
========================================================= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
}

/* =========================================================
   Header / Logo
========================================================= */
header {
  padding: 20px 15px 10px;
  background: #fff;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.logo {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* =========================================================
   Main Content Area
========================================================= */
main {
  width: 100%;
  max-width: 900px;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
}

/* =========================================================
   About Section
========================================================= */
.about {
  padding: 20px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

.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;
  max-width: 700px;
  text-align: left;
}

.about ul li {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.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;
  color: #e91e63;
}

/* =========================================================
   Contact Section
========================================================= */
.contact {
  background: #f9f9f9;
  padding: 40px 20px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.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;
  box-sizing: border-box;
  width: 100%;
}

.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
========================================================= */
footer {
  width: 100%;
  margin-top: 40px;
  padding: 20px 10px;
  font-size: 0.9em;
  color: #999;
  text-align: center;
  box-sizing: border-box;
}

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;
}

/* =========================================================
   Mobile Adjustments
========================================================= */
@media (max-width: 600px) {
  .about h1 {
    font-size: 1.5rem;
  }

  .phone-number {
    font-size: 1.25rem;
  }

  .contact h2 {
    font-size: 1.5rem;
  }
}