/* Import Elegant Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ffafbd, #ffc3a0);
  padding: 100px 20px;
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta {
  background: #fff;
  color: #d63384;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.cta:hover {
  background: #fce4ec;
}

/* Sections */
.section {
  padding: 70px 0;
  text-align: center;
}

.alt-bg {
  background-color: #fafafa;
}

/* Headings */
h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 25px;
}

/* Tip List */
.tip-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.tip-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.1rem;
  margin-bottom: 18px;
  line-height: 1.6;
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tip-list li::before {
  content: "🌸";
  font-size: 1.4rem;
}

/* Download Button */
.download-btn {
  background: #d63384;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: background 0.3s ease;
  box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}

.download-btn:hover {
  background-color: #bd1f6a;
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 0 auto;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* SOS Button */
.sos-btn {
  background: red;
  color: white;
  padding: 16px 35px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 25px;
  transition: background 0.3s;
  box-shadow: 0 6px 15px rgba(255,0,0,0.2);
}

.sos-btn:hover {
  background-color: #cc0000;
}

/* Join Circle Form */
#circle form {
  max-width: 600px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#circle input,
#circle button {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
}

#circle button {
  background: #d63384;
  color: white;
  font-weight: bold;
  border: none;
  transition: background 0.3s;
}

#circle button:hover {
  background-color: #bd1f6a;
}

/* Footer */
footer {
  background: #f1f1f1;
  padding: 25px 20px;
  font-size: 0.95rem;
  text-align: center;
  color: #666;
}

footer a {
  color: #d63384;
  font-weight: 500;
  text-decoration: none;
}

/* Emergency & App Block Styles - Enhanced and Cleaned */

/* Common Block Headings */
.emergency-block h3,
.app-block h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #d63384;
  margin-bottom: 20px;
  text-align: center;
}

/* Container for the resources section */
#resources {
  background-color: #fdf8fc;
  padding: 60px 20px;
}

/* Tip List Styles (Shared) */
#resources .tip-list {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: left;
}

#resources .tip-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  padding: 14px 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  margin-bottom: 14px;
  line-height: 1.6;
}

#resources .tip-list li strong {
  color: #111;
}

/* App Links */
#resources .tip-list a {
  color: #d63384;
  text-decoration: none;
  font-weight: 500;
}

#resources .tip-list a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .cta, .download-btn, .sos-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .tip-list li {
    font-size: 1rem;
  }

  .emergency-block h3,
  .app-block h3 {
    font-size: 1.3rem;
  }

  #resources .tip-list li {
    font-size: 1rem;
    padding: 12px 16px;
  }
}