:root {
  --ph-red: #CE1126;
  --ph-blue: #0038A8;
  --ph-yellow: #FCD116;
  --ph-white: #FFFFFF;
  --dark-gray: #1F2937;
  --medium-gray: #4B5563;
  --light-gray: #F9FAFB;
  --sugar-pink: #EC4899;
  --sugar-gold: #F59E0B;
  --sugar-purple: #8B5CF6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.7;
  color: var(--dark-gray);
  background-color: var(--light-gray);
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--medium-gray);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section layout improvements */
section {
  position: relative;
  overflow: hidden;
}

/* Image layout styles */
.section-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.content-text {
  flex: 1;
  min-width: 300px;
}

.content-image {
  flex: 1;
  min-width: 300px;
}

.image-placeholder {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Vertical image styles for specific sections */
.what-to-expect .content-image .image-placeholder,
.for-sugar-mommies .content-image .image-placeholder {
  height: 800px;
}

.image-placeholder:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* For sections without text/image split */
.container > h2 {
  margin-bottom: 40px;
}

/* Improved section spacing */
.what-is-sugar-mommy,
.leading-site,
.what-to-expect,
.for-sugar-mommies,
.why-choose-us,
.how-to-find,
.safety-privacy,
.browse-cities,
.our-story,
.faqs {
  background-color: var(--ph-white);
  padding: 80px 20px;
  margin-bottom: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Add hover effect for sections */
.what-is-sugar-mommy:hover,
.leading-site:hover,
.what-to-expect:hover,
.for-sugar-mommies:hover,
.why-choose-us:hover,
.how-to-find:hover,
.safety-privacy:hover,
.browse-cities:hover,
.our-story:hover,
.faqs:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* Header & Navigation */
header {
  background-color: var(--ph-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--ph-red);
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
}

.logo span {
  color: var(--ph-blue);
}

.flag-strip {
  height: 5px;
  background: linear-gradient(to right, var(--ph-blue) 33%, var(--ph-red) 33% 67%, var(--ph-yellow) 67%);
  width: 100%;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 15px;
}

nav li {
  margin-left: 0;
}

nav a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

/* Button styles */
.cta-button {
  display: inline-block;
  background-color: var(--sugar-pink);
  color: var(--ph-white);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid var(--sugar-pink);
  box-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--sugar-pink);
  border-color: var(--sugar-pink);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

/* Join Free button styles */
.join-free {
  margin-left: 15px;
}

/* Login button styles */
.login-button {
  margin-left: 20px;
  background-color: transparent;
  color: var(--sugar-pink);
  border: 2px solid var(--sugar-pink);
}

.login-button:hover {
  background-color: var(--sugar-pink);
  color: var(--ph-white);
}

/* Responsive header styles - moved to main responsive section below */

nav a:hover {
  color: var(--ph-red);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ph-red);
  cursor: pointer;
}

/* Mobile Navigation - Default hidden */
.mobile-nav {
  display: none;
}

/* Contact Page Styles */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.contact-card {
  text-align: center;
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--ph-red);
  margin-bottom: 15px;
}

.contact-form .cta-button {
  border: none;
  cursor: pointer;
}

/* Blog Page Styles */
.blog-card .blog-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Image styling for responsive images with border radius */
.responsive-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Blog image specific styles */
.how-to-find-img {
  background-image: url('../images/how-to-find-sugar-mommy-philippines.webp');
}

.what-does-img {
  background-image: url('../images/what-sugar-mommy-means-philippines.webp');
}

.lesbian-sugar-mommy-img {
  background-image: url('../images/lesbian-sugar-mommy-philippines.webp');
}

.best-place-img {
  background-image: url('../images/best-place-meet-sugar-mommy-philippines.webp');
}

/* Main Content */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/sugar-mommy-philippines-hero.png');
  background-size: contain;
  background-position: center;
  color: var(--ph-white);
  text-align: center;
  padding: 120px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  z-index: 1;
}

/* Filipino decorative divider */
.filipino-divider {
  height: 40px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="40" viewBox="0 0 100 40"><path d="M0,20 Q25,0 50,20 T100,20" stroke="var(--ph-red)" stroke-width="2" fill="none"/><path d="M0,20 Q25,40 50,20 T100,20" stroke="var(--ph-blue)" stroke-width="2" fill="none"/><circle cx="25" cy="20" r="4" fill="var(--ph-yellow)"/><circle cx="50" cy="20" r="4" fill="var(--ph-yellow)"/><circle cx="75" cy="20" r="4" fill="var(--ph-yellow)"/></svg>');
  background-repeat: repeat-x;
  background-size: 100px 40px;
  margin: 40px 0;
}

/* Hero content styling */
.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  color: var(--ph-white);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
}

.hero h2 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  color: var(--ph-white);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  color: var(--ph-white);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* New Content Sections */
.what-is-sugar-mommy,
.leading-site,
.what-to-expect,
.for-sugar-mommies,
.why-choose-us,
.safety-privacy {
  background-color: var(--ph-white);
  padding: 80px 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.what-is-sugar-mommy:hover,
.leading-site:hover,
.what-to-expect:hover,
.for-sugar-mommies:hover,
.why-choose-us:hover,
.safety-privacy:hover {
  transform: translateY(-5px);
}

.what-is-sugar-mommy h2,
.leading-site h2,
.what-to-expect h2,
.for-sugar-mommies h2,
.why-choose-us h2,
.how-to-find h2,
.safety-privacy h2,
.browse-cities h2,
.our-story h2,
.faqs h2 {
  color: var(--sugar-purple);
  font-size: 2.5rem;
  margin-bottom: 35px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

/* Add decorative underline to section headings */
.what-is-sugar-mommy h2::after,
.leading-site h2::after,
.what-to-expect h2::after,
.for-sugar-mommies h2::after,
.why-choose-us h2::after,
.how-to-find h2::after,
.safety-privacy h2::after,
.browse-cities h2::after,
.our-story h2::after,
.faqs h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--sugar-pink), var(--sugar-purple));
  border-radius: 2px;
}

.what-is-sugar-mommy p,
.leading-site p,
.what-to-expect p,
.for-sugar-mommies p,
.why-choose-us p,
.how-to-find p,
.safety-privacy p,
.browse-cities p,
.testimonial p,
.faq-item p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--medium-gray);
}

.what-to-expect h3,
.for-sugar-mommies h3,
.why-choose-us h3,
.browse-cities h3,
.testimonial h3,
.faq-item h3 {
  color: var(--sugar-pink);
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.what-to-expect h3:first-of-type {
  margin-top: 0;
}

/* For Sugar Mommies Section */
.for-sugar-mommies {
  background-color: var(--ph-white);
  padding: 60px 20px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.for-sugar-mommies h2 {
  color: var(--ph-red);
  font-size: 2.2rem;
  margin-bottom: 25px;
  text-align: center;
}

.for-sugar-mommies p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--dark-gray);
}

.for-sugar-mommies h3 {
  color: var(--ph-blue);
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.for-sugar-mommies h3:first-of-type {
  margin-top: 0;
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: var(--ph-white);
  padding: 60px 20px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.why-choose-us h2 {
  color: var(--ph-red);
  font-size: 2.2rem;
  margin-bottom: 25px;
  text-align: center;
}

.why-choose-us p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--dark-gray);
}

.why-choose-us h3 {
  color: var(--ph-blue);
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.why-choose-us h3:first-of-type {
  margin-top: 0;
}

/* Benefits grid layout */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Benefit card styles */
.benefit-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 250, 0.95));
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 105, 180, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--sugar-pink), var(--sugar-purple));
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 105, 180, 0.3);
}

/* Benefit icon styles */
.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--sugar-pink), var(--sugar-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

.benefit-icon i {
  font-size: 1.8rem;
  color: white;
}

/* Benefit card text styles */
.benefit-card h3 {
  color: var(--sugar-purple);
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-card p {
  color: var(--medium-gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Intro text styles */
.why-choose-us .intro-text {
  text-align: center;
  font-size: 1.2rem;
  color: var(--dark-gray);
  max-width: 700px;
  margin: 0 auto 30px;
  font-style: italic;
}

/* How to Find Section */
.how-to-find {
  background-color: var(--ph-white);
  padding: 60px 20px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.how-to-find h2 {
  color: var(--ph-red);
  font-size: 2.2rem;
  margin-bottom: 25px;
  text-align: center;
}

.how-to-find p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--dark-gray);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Steps Container */
.steps-container {
  margin-top: 40px;
}

.step {
  display: flex;
  margin-bottom: 30px;
  align-items: flex-start;
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 10px;
  transition: transform 0.3s;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
  background: linear-gradient(135deg, var(--sugar-pink), var(--sugar-purple));
  color: var(--ph-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: var(--ph-blue);
  font-size: 1.5rem;
  margin-bottom: 10px;
  margin-top: 0;
}

.step-content p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 3.2rem;
  margin-bottom: 25px;
  color: var(--ph-white);
  font-weight: 700;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  background-color: var(--sugar-pink);
  color: var(--ph-white);
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 2px solid var(--sugar-pink);
  box-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--sugar-pink);
  border-color: var(--sugar-pink);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature-card {
  background-color: var(--ph-white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.features .feature-icon {
  font-size: 2.5rem;
  color: var(--sugar-pink);
  margin: 0 auto 20px;
  display: block;
  text-align: center;
  height: 60px;
  line-height: 60px;
  width: 60px;
  border-radius: 50%;
}

.features .feature-icon i {
  vertical-align: middle;
  display: inline-block;
}

.feature-card h3 {
  color: var(--sugar-purple);
  margin-bottom: 15px;
}

/* Cities Grid Styles */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.city-card {
  background-color: var(--ph-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.city-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.city-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.city-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.city-image .image-placeholder {
  height: 100%;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.city-card:hover .city-image .image-placeholder {
  transform: scale(1.1);
}

.city-content {
  padding: 25px;
}

.city-content h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.6rem;
  color: var(--sugar-pink);
  position: relative;
  padding-bottom: 10px;
}

.city-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--sugar-pink), var(--sugar-purple));
  border-radius: 2px;
}

.city-card:hover .city-image .image-placeholder {
  transform: scale(1.1);
}

.city-content {
  padding: 25px;
}

/* City card background styles */
.manila-bg {
  background: linear-gradient(135deg, var(--ph-red), var(--ph-blue));
}

.cebu-bg {
  background: linear-gradient(135deg, var(--ph-blue), var(--ph-yellow));
}

.davao-bg {
  background: linear-gradient(135deg, var(--ph-yellow), var(--ph-red));
}

.bacolod-bg {
  background: linear-gradient(135deg, var(--ph-red), var(--ph-yellow));
}

.cagayan-de-oro-bg {
  background: linear-gradient(135deg, var(--ph-blue), var(--ph-red));
}

.ilocos-norte-bg {
  background: linear-gradient(135deg, var(--ph-yellow), var(--ph-blue));
}

/* City icon styles */
.city-icon {
  font-size: 3rem;
  color: white;
  opacity: 0.7;
}

/* Centered content container */
.centered-content {
  text-align: center;
  margin-top: 40px;
}

/* Contact info card styles */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.contact-info-card {
  text-align: center;
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.contact-info-icon {
  font-size: 2.5rem;
  color: var(--ph-red);
  margin-bottom: 15px;
}

.city-content h3 {
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.city-content p {
  margin-bottom: 0;
  color: var(--medium-gray);
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  color: var(--ph-white);
  padding: 50px 0 20px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: var(--ph-white);
  margin-bottom: 20px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--ph-red);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--ph-red);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #aaa;
  font-size: 0.9rem;
}

/* Page Specific Styles */
.page-header {
  background-color: var(--sugar-pink);
  color: var(--ph-white);
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 50px;
  background: linear-gradient(135deg, var(--sugar-purple) 0%, var(--sugar-pink) 100%);
}

.page-header h1 {
  color: var(--ph-white);
  font-size: 2rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 1.5rem;
  }
}

.page-header p {
  color: var(--ph-white);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.page-content {
  background-color: var(--ph-white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 60px;
}

.page-content h2 {
  color: var(--ph-blue);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-content p {
  margin-bottom: 20px;
}

.page-content ul, .page-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-content li {
  margin-bottom: 10px;
}

/* Blog Styles */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .blog-posts {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .blog-posts {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.blog-card {
  background-color: var(--ph-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-image {
  padding-top: 66.67%; /* 3:2 (6:4) aspect ratio */
  height: 0;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.blog-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  white-space: normal;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .blog-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .blog-card h3 {
    font-size: 1.1rem;
  }
}

.blog-card h3 a {
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.3s;
}

/* Single Blog Post Styles */
.blog-post {
  background-color: var(--ph-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-bottom: 60px;
}

.blog-cover-image {
  margin: 20px auto 40px;
  max-width: 80%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-cover-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .blog-cover-image {
    max-width: 90%;
    margin: 15px auto 30px;
  }
}

@media (max-width: 480px) {
  .blog-cover-image {
    max-width: 100%;
    margin: 10px 0 25px;
  }
}

.blog-post .blog-header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.blog-post h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--dark-gray);
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .blog-post h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .blog-post h1 {
    font-size: 1.5rem;
  }
}

.blog-post .blog-meta {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--medium-gray);
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .blog-post .blog-meta {
    flex-direction: column;
    gap: 5px;
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .blog-post .blog-meta span {
    display: block;
  }
}

.blog-post .blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  padding: 0;
}

.blog-post .blog-content h2 {
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--sugar-purple);
}

.blog-post .blog-content h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--sugar-pink);
}

.blog-post .blog-content h4 {
  font-size: 1.25rem;
  margin-top: 25px;
  margin-bottom: 12px;
  color: var(--sugar-gold);
}

.blog-post .blog-content p {
  margin-bottom: 20px;
}

.blog-post .blog-content ul,
.blog-post .blog-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.blog-post .blog-content li {
  margin-bottom: 10px;
}

.blog-post .blog-cta {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin: 40px 0;
  border: 1px solid #eee;
}

.blog-post .blog-cta h3 {
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.blog-post .blog-cta p {
  margin-bottom: 25px;
  color: var(--medium-gray);
}

.related-posts {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.related-posts h3 {
  margin-bottom: 30px;
  color: var(--dark-gray);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.related-card {
  background-color: var(--light-gray);
  padding: 25px;
  border-radius: 10px;
  transition: transform 0.3s;
  border: 1px solid #eee;
}

.related-card:hover {
  transform: translateY(-5px);
}

.related-card h4 {
  margin-bottom: 10px;
  color: var(--sugar-purple);
  font-size: 1.25rem;
}

.related-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.related-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card h3 a:hover {
  color: var(--ph-red);
}

/* Contact Form */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* App Page Styles */
.app-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.app-features .feature-card {
  text-align: center;
}

.app-features .feature-icon {
  font-size: 2.5rem;
  color: var(--ph-white);
  margin: 0 auto 20px;
  display: block;
  text-align: center;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--sugar-purple);
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-features .feature-icon i {
  vertical-align: middle;
  display: inline-block;
}

.app-download {
  text-align: center;
  margin-top: 40px;
}

.download-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.download-section {
  background-color: var(--light-gray);
  border-radius: 15px;
  padding: 40px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.download-section h3 {
  color: var(--sugar-purple);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.download-section h4 {
  color: var(--sugar-pink);
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.app-features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.app-features-list li {
  margin-bottom: 20px;
  padding: 15px;
  background-color: var(--ph-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background-color: var(--sugar-purple);
  color: var(--ph-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.2rem;
}

.download-button-container {
  margin-top: 30px;
  text-align: center;
}

.google-play-btn {
  background-color: var(--sugar-purple);
  border-color: var(--sugar-purple);
}

.google-play-btn:hover {
  background-color: transparent;
  color: var(--sugar-purple);
}

.install-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.install-steps li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--sugar-pink);
  color: var(--ph-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content p {
  margin-bottom: 0;
}

.final-cta {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark-gray);
  margin-top: 40px;
  text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
  .download-sections {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .download-section {
    padding: 30px;
  }
}

.app-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.app-badge {
  display: inline-block;
  background-color: var(--dark-gray);
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.app-badge:hover {
  background-color: var(--ph-blue);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 2.2rem;
  }
  
  nav ul {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  /* Header responsive styles */
  nav .join-free,
  nav .login-button {
    display: none;
  }

  .logo a {
    font-size: 1.5rem;
  }
  
  .header-container {
    gap: 20px;
    padding: 15px 20px;
  }
  
  .mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--ph-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    padding: 25px;
    z-index: 999;
    border-top: 2px solid var(--sugar-pink);
  }
  
  .mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease-out;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .mobile-nav ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-nav li {
    margin: 0 0 18px 0;
  }
  
  .mobile-nav a {
    display: block;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--sugar-purple);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
  }
  
  .mobile-nav a:hover {
    color: var(--sugar-pink);
    padding-left: 8px;
  }
  
  .mobile-nav .login-button,
  .mobile-nav .cta-button.join-free {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px;
    border-radius: 50px;
    margin-top: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
  }
  
  .mobile-nav .login-button {
    background-color: transparent;
    color: var(--sugar-pink);
    border: 2px solid var(--sugar-pink);
  }
  
  .mobile-nav .login-button:hover {
    background-color: var(--sugar-pink);
    color: var(--ph-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.3);
    padding-left: 14px;
  }
  
  .mobile-nav .cta-button.join-free {
    background: linear-gradient(135deg, var(--sugar-purple) 0%, var(--sugar-pink) 100%);
    color: white;
  }
  
  .mobile-nav .cta-button.join-free:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(138, 43, 226, 0.4);
    padding-left: 14px;
  }
}

@media (max-width: 768px) {
  /* Responsive styles for CTA buttons */
  .cta-button {
    padding: 14px 35px;
    font-size: 1rem;
    display: block;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Adjust spacing for mobile */
  div[style*="text-align: center"] {
    margin-top: 30px !important;
  }
  .hero {
    padding: 60px 20px;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .page-header {
    padding: 40px 20px;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-content {
    padding: 25px;
  }
  
  /* Responsive styles for all sections */
  .what-is-sugar-mommy,
  .leading-site,
  .what-to-expect,
  .for-sugar-mommies,
  .why-choose-us,
  .how-to-find,
  .safety-privacy,
  .browse-cities,
  .our-story,
  .faqs {
    padding: 40px 20px;
    margin-bottom: 30px;
  }
  
  .what-is-sugar-mommy h2,
  .leading-site h2,
  .what-to-expect h2,
  .for-sugar-mommies h2,
  .why-choose-us h2,
  .how-to-find h2,
  .safety-privacy h2,
  .browse-cities h2,
  .our-story h2,
  .faqs h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .what-is-sugar-mommy p,
  .leading-site p,
  .what-to-expect p,
  .for-sugar-mommies p,
  .why-choose-us p,
  .how-to-find p,
  .safety-privacy p,
  .browse-cities p,
  .testimonial p,
  .faq-item p {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  
  .what-to-expect h3,
  .for-sugar-mommies h3,
  .why-choose-us h3,
  .step-content h3,
  .browse-cities h3,
  .testimonial h3,
  .faq-item h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
  }
  
  /* Responsive styles for steps */
  .step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .step-content p {
    text-align: center;
  }
  
  /* Responsive styles for testimonials */
  .testimonial {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  /* Responsive styles for final CTA */
  .final-cta {
    padding: 60px 20px;
  }
  
  .final-cta h2 {
    font-size: 2rem;
  }
}

/* Safety, Privacy & Authenticity Section */
.safety-privacy {
  background-color: var(--ph-white);
  padding: 60px 20px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.safety-privacy h2 {
  color: var(--ph-red);
  font-size: 2.2rem;
  margin-bottom: 25px;
  text-align: center;
}

.safety-privacy p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--dark-gray);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Browse Cities Section */
.browse-cities {
  background-color: var(--ph-white);
  padding: 60px 20px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.browse-cities h2 {
  color: var(--ph-red);
  font-size: 2.2rem;
  margin-bottom: 25px;
  text-align: center;
}

.browse-cities h3 {
  color: var(--ph-blue);
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.browse-cities h3:first-of-type {
  margin-top: 0;
}

.browse-cities p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--dark-gray);
}

/* Our Story Section */
.our-story {
  background-color: var(--ph-white);
  padding: 60px 20px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.our-story h2 {
  color: var(--ph-red);
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
}

.testimonial {
  background-color: var(--light-gray);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.testimonial h3 {
  color: var(--ph-blue);
  font-size: 1.3rem;
  margin-bottom: 15px;
  margin-top: 0;
}

.testimonial p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  font-style: italic;
}

/* FAQs Section */
.faqs {
  background-color: var(--ph-white);
  padding: 60px 20px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faqs h2 {
  color: var(--ph-red);
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
}

.faq-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item h3 {
  color: var(--ph-blue);
  font-size: 1.3rem;
  margin-bottom: 10px;
  margin-top: 0;
}

.faq-item p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 0;
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/filipina-sugar-mommy-younger-man-couple.webp');
  background-size: cover;
  background-position: center;
  color: var(--ph-white);
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 0;
}

.final-cta h2 {
  color: var(--ph-white);
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--ph-white);
}

/* Breadcrumb */
.breadcrumb {
  padding: 15px 0;
  background-color: var(--light-gray);
  margin-bottom: 30px;
}

.breadcrumb a {
  color: var(--ph-blue);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Safety Tips */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.safety-tip {
  background-color: #f9f9f9;
  padding: 25px;
  border-left: 5px solid var(--ph-red);
  border-radius: 5px;
}

.safety-tip h3 {
  color: var(--ph-red);
  margin-top: 0;
}

/* Scam Warning Section */
.scam-warning {
  margin: 40px 0;
  padding: 30px;
  background-color: #fef2f2;
  border-radius: 8px;
  border: 1px solid #fecaca;
}

.scam-warning h2 {
  color: var(--ph-red);
  margin-bottom: 15px;
}

.scam-item {
  margin: 30px 0;
  padding: 25px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--sugar-purple);
}

.scam-item h3 {
  color: var(--sugar-purple);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.scam-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.scam-description h4,
.scam-prevention h4 {
  color: var(--dark-gray);
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.scam-prevention ul {
  list-style-type: none;
  padding-left: 0;
}

.scam-prevention li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.scam-prevention li:before {
  content: "✓";
  color: var(--ph-red);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .scam-warning {
    padding: 20px;
  }
  
  .scam-item {
    padding: 20px;
  }
  
  .scam-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}