* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.logo {
    width: 90px;
    margin-bottom: 15px;
}

.tagline-under-logo {
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #4a6f6a;
    font-weight: 500;
}

body {
    background-color: #f7faf9;
    color: #2f3e3a;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #e6f4f1, #f7faf9);
}

.hero h1 {
    font-size: 3rem;
    color: #2c7a7b;
}

.tagline {
    font-size: 1.3rem;
    margin-top: 10px;
    font-weight: 500;
}

.subtext {
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Quote Section */
.quote {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #4a6f6a;
}

.helpline {
    background-color: #e6f4f1;
    padding: 50px 20px;
    text-align: center;
}

.helpline ul {
    list-style: none;
    margin-top: 20px;
}

.helpline li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.contact {
    background-color: #ffffff;
    padding: 60px 20px;
    max-width: 700px;
    margin: auto;
}

.quote-box {
  max-width: 600px;
  margin: 80px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.quote {
  font-size: 1.4rem;
  line-height: 1.6;
}

.author {
  margin-top: 15px;
  color: #2c7a7b;
}


.contact-text {
    text-align: center;
    margin-bottom: 25px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input, textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

button {
    background-color: #2c7a7b;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 55px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* About & Support */
section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c7a7b;
}

.about p,
.reminder p {
    text-align: center;
}

.support ul {
    list-style: none;
    margin-top: 30px;
    text-align: center;
}

.support li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #e6f4f1;
    text-align: center;
    padding: 30px 10px;
    font-size: 0.9rem;
}
