/*
  Gay DE Stylesheet
  - Einheitliche, konfliktfreie Styles
  - Angelehnt an das klare Design von gay.de
*/

:root {
  --primary: #0aa37a;
  --primary-dark: #078b67;
  --secondary: #7a1ea2;
  --text: #1e1e1e;
  --muted: #666;
  --bg: #ffffff;
  --alt: #f4f7f8;
  --border: #e3e7ea;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Enhanced CTA Button Styles */
.cta-button {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
  color: white;
}

.cta-button.large {
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 800;
}

.cta-button.outline {
  background: transparent;
  color: #4CAF50;
  border: 2px solid #4CAF50;
  box-shadow: none;
}

.cta-button.outline:hover {
  background: #4CAF50;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.cta-button.white {
  background: rgba(255, 255, 255, 0.95);
  color: #4CAF50;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.white:hover {
  background: white;
  color: #45a049;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Enhanced Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #0b6f57 0%, #0aa37a 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(11, 111, 87, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-header:hover::before {
  opacity: 1;
}

.header-wrap { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 16px 0; 
  position: relative;
  z-index: 2;
}

.brand { 
  font-weight: 800; 
  font-size: 1.4rem; 
  color: #fff; 
  letter-spacing: 0.5px; 
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.brand:hover {
  transform: scale(1.05);
  color: #fff;
}

.nav-toggle { 
  background: transparent; 
  border: 0; 
  color: #fff; 
  font-size: 24px; 
  display: none; 
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav { 
  position: relative;
}

.nav-list { 
  list-style: none; 
  margin: 0; 
  padding: 0; 
  display: flex; 
  gap: 24px; 
  align-items: center; 
}

.nav-list a { 
  color: #fff; 
  font-weight: 600; 
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-list a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.nav-list a:hover::before {
  left: 0;
}

.nav-list a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Buttons */
.btn { display: inline-block; padding: 12px 18px; border-radius: 999px; font-weight: 600; border: 2px solid transparent; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: #fff; color: var(--primary); border-color: var(--primary); }
.btn-secondary:hover { background: #f3fbf8; }

/* Hero */
.hero { position: relative; }
.hero-img { width: 100%; height: clamp(320px, 50vw, 520px); object-fit: cover; filter: saturate(1.05); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.15)); display: grid; place-items: center; text-align: center; }
.hero-overlay h1 { color: #fff; font-size: clamp(24px, 5vw, 44px); margin: 0; }
.hero-sub { color: #eaf7f4; max-width: 850px; margin: 14px auto 22px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; }

/* Sections */
.section { padding: 60px 0; }
.section-alt { background: var(--alt); }
.section-title { font-size: clamp(22px, 3.5vw, 32px); margin: 0 0 22px; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.feature-icon { width: 52px; height: 52px; border-radius: 12px; background: #eaf7f4; display: grid; place-items: center; margin-bottom: 10px; }
.feature-icon svg { width: 28px; height: 28px; fill: var(--primary); }
.feature h3 { margin: 6px 0 8px; font-size: 18px; }
.feature p { color: var(--muted); margin: 0; }

/* Profile Grid */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.profile-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.profile-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profile-card:hover .profile-image img {
  transform: scale(1.05);
}

.profile-info {
  padding: 16px;
}

.profile-info h3 {
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.profile-info .location {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 8px 0;
}

.profile-info .bio {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 12px 0;
}

.profile-info .btn {
  width: 100%;
  text-align: center;
  font-size: 14px;
  padding: 8px 12px;
}

/* Content Grid for Berlin Guide */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.content-main h3 {
  color: var(--text);
  font-size: 24px;
  margin: 0 0 16px 0;
}

.content-main h4 {
  color: var(--text);
  font-size: 20px;
  margin: 24px 0 12px 0;
}

.content-main p {
  margin: 0 0 16px 0;
  line-height: 1.7;
}

.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box, .cta-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.info-box h4, .cta-box h4 {
  margin: 0 0 12px 0;
  color: var(--text);
  font-size: 18px;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box li {
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}

.info-box li:last-child {
  border-bottom: none;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  text-align: center;
}

.cta-box h4 {
  color: #fff;
}

.cta-box p {
  margin: 0 0 16px 0;
  opacity: 0.9;
}

.cta-box .btn {
  background: #fff;
  color: var(--primary);
  border: none;
}

.cta-box .btn:hover {
  background: #f8f8f8;
}

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial { 
  background: #fff; 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 16px; 
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
}
.testimonial img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}
.testimonial blockquote { 
  margin: 10px 0; 
  color: var(--text); 
  font-weight: 500; 
  font-style: italic;
  line-height: 1.5;
}
.testimonial figcaption { 
  color: var(--muted); 
  font-size: 14px; 
  font-weight: 600;
}

/* Gallery */
.members-gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 18px; }
.members-gallery img { border-radius: 8px; border: 1px solid var(--border); }
.cta-row { margin-top: 12px; }

/* Community */
.community-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 26px; align-items: center; }
.img-rounded { border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); }

/* Split layout */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 26px; align-items: center; }

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

.city {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.city:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.city a:hover {
  text-decoration: none;
  color: inherit;
}

.city img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.city h3 {
  font-size: 1.4rem;
  margin: 20px 20px 10px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.city:hover h3 {
  color: var(--primary-color);
}

.city p {
  margin: 0 20px 20px;
  color: #666;
  line-height: 1.6;
}

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 12px 0 18px; }
.checklist li { position: relative; padding-left: 26px; margin: 6px 0; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* About section styles */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0 3rem 0;
}

.highlight-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 1px solid rgba(10, 163, 122, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0aa37a, #0b6f57);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(10, 163, 122, 0.15);
  border-color: rgba(10, 163, 122, 0.2);
}

.highlight-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #2c3e50;
  line-height: 1.4;
}

.highlight-card p {
  color: #5a6c7d;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.highlight-card strong {
  color: #0aa37a;
  font-weight: 600;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.about-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 2.5rem 0 1.5rem 0;
  text-align: center;
  position: relative;
}

.about-content h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0aa37a, #0b6f57);
  border-radius: 2px;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 1.2rem 0;
  text-align: justify;
}

.about-content strong {
  color: #0aa37a;
  font-weight: 600;
}

.about-content em {
  color: #2c3e50;
  font-style: italic;
  font-weight: 500;
}

.about-content a {
  color: #0aa37a;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.about-content a:hover {
  border-bottom-color: #0aa37a;
}

.success-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(10, 163, 122, 0.05) 0%, rgba(11, 111, 87, 0.05) 100%);
  border-radius: 16px;
  border: 1px solid rgba(10, 163, 122, 0.1);
}

.stat {
  text-align: center;
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.stat:hover {
  transform: translateY(-3px);
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0aa37a;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #5a6c7d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-about {
  text-align: center;
  margin: 3rem 0 2rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.8) 100%);
  border-radius: 16px;
  border: 1px solid rgba(10, 163, 122, 0.1);
}

.cta-about .btn {
  margin: 0 0.5rem;
  min-width: 200px;
}

.cta-about .btn-primary {
  background: linear-gradient(135deg, #0aa37a 0%, #0b6f57 100%);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(10, 163, 122, 0.3);
  transition: all 0.3s ease;
}

.cta-about .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 163, 122, 0.4);
}

.cta-about .btn-secondary {
  background: transparent;
  border: 2px solid #0aa37a;
  color: #0aa37a;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-about .btn-secondary:hover {
  background: #0aa37a;
  color: #fff;
  transform: translateY(-2px);
}

/* FAQ */
.faq details { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; padding: 12px 14px; margin-bottom: 10px; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; font-weight: 600; }

/* Enhanced CTA Section Styles */
.section-cta {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 50%, #2e7d32 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  margin: 60px 0;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.4;
}

.section-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: ctaGlow 8s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(360deg) scale(1.1); }
}

.cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-cta .section-title {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 25px;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 25px;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-cta p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.lead-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.benefit-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

.cta-highlight {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  margin-top: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.urgency-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
  justify-content: center;
}

.btn-large svg {
  flex-shrink: 0;
}

.section-cta .btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #0aa37a;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.section-cta .btn-primary:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  color: #0b6f57;
}

.section-cta .btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.section-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
/* Enhanced Footer */
.site-footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: #fff;
  padding: 60px 0 0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50, #45a049, #4CAF50);
}

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

.footer-section {
  position: relative;
}

.footer-section h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #4CAF50;
  position: relative;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 30px;
  height: 3px;
  background: #45a049;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.footer-nav li {
  margin-bottom: 12px;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.footer-nav li:hover {
  transform: translateX(5px);
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-nav a::before {
  content: '▶';
  position: absolute;
  left: -20px;
  color: #4CAF50;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover::before {
  opacity: 1;
  left: -15px;
}

.footer-nav a:hover {
  color: #4CAF50;
  padding-left: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #444 0%, #333 100%);
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-links a:hover {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  transform: translateY(-3px) scale(1.1);
  border-color: #4CAF50;
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 30px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
}

.footer-bottom p {
  margin: 0;
  color: #bbb;
  font-size: 15px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid, .split { grid-template-columns: 1fr; }
  .cities { grid-template-columns: 1fr 1fr; }
  .members-gallery { grid-template-columns: repeat(3, 1fr); }
  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .nav-toggle { 
    display: block; 
    cursor: pointer;
    z-index: 1001;
  }
  
  .nav { 
    position: fixed; 
    left: -100%; 
    top: 70px; 
    width: 100%; 
    height: calc(100vh - 70px);
    background: #0b6f57; 
    transition: left 0.3s ease; 
    box-shadow: 0 10px 27px rgba(0,0,0,0.1); 
    z-index: 1000;
    overflow-y: auto;
  }
  
  .nav.open { 
    left: 0; 
  }
  
  .nav-list { 
    flex-direction: column; 
    padding: 2rem 0;
    gap: 0;
    height: 100%;
  }
  
  .nav-list li { 
    margin: 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-list a { 
    display: block;
    padding: 1rem 2rem; 
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background-color 0.2s ease;
  }
  
  .nav-list a:hover {
    background-color: rgba(255,255,255,0.1);
  }
  
  .nav-list .btn {
    margin: 1rem 2rem;
    display: inline-block;
    width: calc(100% - 4rem);
    text-align: center;
  }
  
  /* Mobile layout optimizations */
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .hero {
    padding: 4rem 0;
    text-align: center;
  }
  
  .hero h1 { 
    font-size: 2rem; 
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero p { 
    font-size: 1rem; 
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  /* Grid layouts */
  .features-grid { 
    grid-template-columns: 1fr; 
    gap: 2rem;
  }
  
  .profiles-grid { 
    grid-template-columns: 1fr; 
    gap: 1.5rem;
  }
  
  .testimonials-grid { 
    grid-template-columns: 1fr; 
    gap: 2rem;
  }
  
  .gallery-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 1rem;
  }
  
  .cities { 
    grid-template-columns: 1fr; 
    gap: 1rem;
  }
  
  .benefits-grid { 
    grid-template-columns: 1fr; 
    gap: 2rem;
  }
  
  /* About section mobile */
  .about-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0 2rem 0;
  }
  
  .highlight-card {
    padding: 1.5rem;
    text-align: left;
  }
  
  .highlight-card h3 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .about-content {
    padding: 0 1rem;
  }
  
  .about-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
  }
  
  .about-content p {
    font-size: 1rem;
    text-align: left;
  }
  
  .success-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .stat {
    padding: 0.8rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .cta-about {
    padding: 1.5rem;
    margin: 2rem 0 1rem 0;
  }
  
  .cta-about .btn {
    display: block;
    margin: 0.5rem auto;
    min-width: auto;
    width: 100%;
    max-width: 280px;
  }
  
  /* Guide section mobile */
  .guide-steps {
    gap: 1.5rem;
  }
  
  .step-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin: 0 auto;
  }
  
  /* Tips section mobile */
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tip-card {
    padding: 1.5rem;
  }
  
  /* CTA sections */
  .section-cta .section-title { 
    font-size: 2rem; 
  }
  
  .lead-text { 
    font-size: 1.1rem; 
  }
  
  .cta-buttons { 
    flex-direction: column; 
    align-items: center; 
    gap: 1rem;
  }
  
  .btn-large { 
    min-width: auto; 
    width: 100%; 
    max-width: 350px; 
  }
  
  /* Footer */
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 20px; 
  }
  
  /* Form elements */
  .form-group {
    margin-bottom: 1rem;
  }
  
  input, textarea, select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}
  .footer-section h4 {
    font-size: 15px;
  }
  .social-links {
    justify-content: center;
  }
}

/* Guide Section Styles */
.guide-intro {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-intro p {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
  font-weight: 500;
}

.guide-steps {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.step-content h3 {
  margin: 0 0 1rem 0;
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
}

.step-content p {
  margin: 0 0 1rem 0;
  color: #666;
  line-height: 1.6;
}

.pro-tip {
  background: linear-gradient(135deg, rgba(255, 235, 59, 0.1), rgba(255, 193, 7, 0.1));
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid #ffc107;
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.tip-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pro-tip strong {
  color: #f57c00;
}

.guide-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.guide-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.guide-cta h3 {
  margin: 0 0 1rem 0;
  font-size: 1.8rem;
  font-weight: 600;
}

.guide-cta p {
  margin: 0 0 2rem 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Tips Section Styles */
.tips-intro {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.1));
  border-radius: 15px;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.tips-intro p {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.tip-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4caf50, #8bc34a);
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tip-card .tip-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.tip-card h3 {
  margin: 0 0 1.5rem 0;
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
}

.tip-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.tip-list li {
  padding: 0.5rem 0;
  color: #666;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tip-list li:last-child {
  border-bottom: none;
}

.success-stat {
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  margin-top: 1rem;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.stat-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.tips-bonus {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 193, 7, 0.1));
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 152, 0, 0.2);
  margin-bottom: 3rem;
}

.bonus-content h3 {
  margin: 0 0 1rem 0;
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
}

.bonus-content p {
  margin: 0 0 1.5rem 0;
  color: #666;
  line-height: 1.6;
}

.bonus-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.5rem;
}

.bonus-checklist label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.bonus-checklist label:hover {
  background: rgba(255, 152, 0, 0.1);
}

.bonus-checklist input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #ff9800;
}

.tips-cta {
  background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.tips-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
  opacity: 0.3;
}

.tips-cta h3 {
  margin: 0 0 1rem 0;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.tips-cta p {
  margin: 0 0 2rem 0;
  font-size: 1.1rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Enhanced Hamburg Page Styles */

/* Content with Image Layout */
.content-with-image {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}

.content-text {
  padding-right: 20px;
}

.content-image {
  text-align: center;
}

.section-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.section-img:hover {
  transform: scale(1.05);
}

/* Enhanced Info Box */
.info-box.highlight-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: none;
  border-radius: 16px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.info-content h4 {
  color: #2c5530;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.info-bullet {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-item strong {
  color: #2c5530;
  display: block;
  margin-bottom: 5px;
}

.info-item p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* Quote Box */
.quote-box {
  margin: 40px 0;
  text-align: center;
}

.quote-box blockquote {
  background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
  color: white;
  padding: 30px;
  border-radius: 16px;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
}

.quote-box blockquote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.3;
}

/* Scene Areas */
.scene-intro {
  text-align: center;
  margin-bottom: 50px;
}

.scene-areas {
  margin: 50px 0;
}

.area-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
  padding: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.area-card.reverse {
  grid-template-columns: 1fr 1fr;
}

.area-card.reverse .area-content {
  order: 2;
}

.area-card.reverse .area-image {
  order: 1;
}

.area-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

.area-content h3 {
  color: #2c5530;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Pride Section */
.pride-section {
  margin: 50px 0;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 50%, #6bcf7f 100%);
  border-radius: 20px;
  padding: 40px;
  color: white;
}

.pride-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.pride-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 25px;
  margin-bottom: 20px;
  font-weight: bold;
}

.pride-icon {
  font-size: 1.5rem;
}

.pride-text h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.pride-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Culture Section */
.culture-section {
  margin: 50px 0;
}

.culture-section h3 {
  text-align: center;
  color: #2c5530;
  margin-bottom: 30px;
  font-size: 1.8rem;
}

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

.culture-item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.culture-item:hover {
  transform: translateY(-5px);
}

.culture-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.culture-item h4 {
  color: #2c5530;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.culture-note {
  text-align: center;
  font-style: italic;
  color: #666;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
}

/* Enhanced Features */
.features-intro {
  text-align: center;
  margin-bottom: 50px;
}

.intro-image {
  margin-top: 30px;
}

.features-hero-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

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

.feature.premium {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature.premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2c5530 0%, #4a7c59 100%);
}

.feature.premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-color: #2c5530;
}

.feature-content {
  margin-top: 20px;
}

.feature-highlight {
  background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
}

/* Features Showcase */
.features-showcase {
  margin: 50px 0;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 16px;
}

.showcase-item.reverse {
  grid-template-columns: 1fr 1fr;
}

.showcase-item.reverse .showcase-content {
  order: 2;
}

.showcase-item.reverse .showcase-image {
  order: 1;
}

.showcase-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.showcase-content h4 {
  color: #2c5530;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Types Section Styles */
.types-intro {
  text-align: center;
  margin-bottom: 40px;
}

.types-hero-image {
  margin-top: 30px;
}

.types-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.type-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--primary);
}

.type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.type-card.professional {
  border-left-color: #2196F3;
}

.type-card.daddy {
  border-left-color: #FF9800;
}

.type-card.creative {
  border-left-color: #9C27B0;
}

.type-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.type-content h3 {
  color: var(--text);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.type-stats {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.stat {
  background: var(--alt);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.type-image {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.type-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.special-highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  padding: 30px;
  margin: 40px 0;
  color: white;
}

.highlight-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
  align-items: center;
}

.highlight-icon {
  font-size: 3rem;
}

.highlight-text h4 {
  color: white;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.highlight-image {
  border-radius: 10px;
  overflow: hidden;
}

.highlight-image img {
  width: 150px;
  height: 120px;
  object-fit: cover;
}

.additional-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.additional-type {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--alt);
  border-radius: 12px;
  border-left: 3px solid var(--primary);
}

.additional-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.additional-content h4 {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Safety Section Styles */
.safety-intro {
  text-align: center;
  margin-bottom: 40px;
}

.safety-hero {
  margin-top: 30px;
}

.safety-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.safety-feature {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-top: 4px solid var(--primary);
}

.safety-feature.encryption {
  border-top-color: #4CAF50;
}

.safety-feature.verification {
  border-top-color: #2196F3;
}

.feature-badge {
  margin-top: 15px;
}

.badge-text {
  background: #4CAF50;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.verification-stats {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.safety-tips {
  background: var(--alt);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}

.tips-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.tips-icon {
  font-size: 2rem;
}

.tips-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
}

.tip-main h4 {
  color: var(--text);
  margin-bottom: 10px;
}

.tips-locations {
  display: flex;
  gap: 15px;
}

.location-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  min-width: 120px;
}

.location-card img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.location-info h5 {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: var(--text);
}

.location-info p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

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

.safety-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.item-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.item-content h4 {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Nightlife Section Styles */
.nightlife-intro {
  text-align: center;
  margin-bottom: 40px;
}

.nightlife-hero {
  margin-top: 30px;
}

.nightlife-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.venues-section {
  margin-bottom: 40px;
}

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

.venue-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.venue-image {
  height: 180px;
  overflow: hidden;
}

.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.venue-card:hover .venue-image img {
  transform: scale(1.05);
}

.venue-info {
  padding: 20px;
}

.venue-info h4 {
  color: var(--text);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.venue-type {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.venue-features {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

.feature-tag {
  background: var(--alt);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.meetup-highlight {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 20px;
  padding: 30px;
  margin: 40px 0;
  color: white;
}

.meetup-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
  align-items: center;
}

.meetup-icon {
  font-size: 3rem;
}

.meetup-text h4 {
  color: white;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.meetup-image {
  border-radius: 10px;
  overflow: hidden;
}

.meetup-image img {
  width: 150px;
  height: 120px;
  object-fit: cover;
}

.additional-activities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.activity-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--alt);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.activity-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.activity-content h4 {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.bridge-section {
  text-align: center;
  padding: 30px;
  background: var(--alt);
  border-radius: 15px;
  margin-top: 30px;
}

.bridge-text {
  font-size: 1.1rem;
  color: var(--text);
  font-style: italic;
  margin: 0;
}

/* Success Stories Styles */
.stories-intro {
  text-align: center;
  margin-bottom: 40px;
}

.stories-hero {
  margin-top: 30px;
}

.stories-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-card.featured {
  border-left: 4px solid #4CAF50;
}

.testimonial-card.travel {
  border-left: 4px solid #2196F3;
}

.testimonial-card.intergenerational {
  border-left: 4px solid #FF9800;
}

.testimonial-header {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  color: var(--text);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.testimonial-location {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.duration-badge {
  background: var(--alt);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.testimonial-card blockquote {
  margin: 0 0 20px 0;
  padding: 0;
  border: none;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

.testimonial-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: var(--alt);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.member-feedback {
  background: var(--alt);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}

.member-feedback h3 {
  text-align: center;
  margin-bottom: 25px;
  color: var(--text);
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feedback-item {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.feedback-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feedback-item p {
  margin: 0;
  font-style: italic;
  color: var(--text);
}

.stories-conclusion {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  padding: 30px;
  color: white;
}

.conclusion-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
  align-items: center;
}

.conclusion-icon {
  font-size: 3rem;
}

.conclusion-text p {
  color: white;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.conclusion-image {
  border-radius: 10px;
  overflow: hidden;
}

/* Responsive Design Improvements */
@media (max-width: 768px) {
  .types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .type-card {
    padding: 20px;
  }
  
  .type-stats {
    flex-wrap: wrap;
  }
  
  .highlight-content,
  .meetup-content,
  .conclusion-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  
  .highlight-image,
  .meetup-image,
  .conclusion-image {
    order: -1;
  }
  
  .highlight-image img,
  .meetup-image img,
  .conclusion-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  
  .safety-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tips-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tips-locations {
    justify-content: center;
  }
  
  .venues-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .feedback-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .additional-activities,
  .additional-types,
  .safety-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Enhanced Visual Effects */
.type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  border-radius: 15px 15px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.type-card {
  position: relative;
}

.type-card:hover::before {
  opacity: 1;
}

.venue-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  border-radius: 15px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.venue-card {
  position: relative;
}

.venue-card:hover::after {
  opacity: 1;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 17px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card {
  position: relative;
}

.testimonial-card:hover::before {
  opacity: 1;
}

/* Animation Enhancements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.type-card,
.venue-card,
.testimonial-card,
.safety-feature {
  animation: fadeInUp 0.6s ease-out;
}

.type-card:nth-child(1) { animation-delay: 0.1s; }
.type-card:nth-child(2) { animation-delay: 0.2s; }
.type-card:nth-child(3) { animation-delay: 0.3s; }

.venue-card:nth-child(1) { animation-delay: 0.1s; }
.venue-card:nth-child(2) { animation-delay: 0.2s; }
.venue-card:nth-child(3) { animation-delay: 0.3s; }
.venue-card:nth-child(4) { animation-delay: 0.4s; }

/* Improved Typography */
.section-title {
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* Enhanced Color Scheme */
:root {
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --shadow-light: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-medium: 0 5px 20px rgba(0,0,0,0.1);
  --shadow-heavy: 0 10px 30px rgba(0,0,0,0.15);
}

/* Interactive Elements */
.feature-tag:hover,
.tag:hover,
.duration-badge:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

.stat:hover {
  background: var(--primary-color);
  color: white;
  transition: all 0.3s ease;
}

/* Loading States */
.types-img,
.safety-img,
.nightlife-img,
.stories-img {
  transition: opacity 0.3s ease;
}

/* FAQ Section Styles - Simplified */
.faq-simple {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.faq-simple h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.faq-simple h3 {
  color: var(--primary-color);
  margin: 2rem 0 1rem 0;
  font-size: 1.4rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.faq-list {
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-item[open] {
  border-color: var(--primary-color);
}

.faq-question {
  padding: 1.2rem;
  background: #f8f9fa;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-color);
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-item[open] .faq-question {
  background: var(--primary-color);
  color: white;
}

.faq-answer {
  padding: 1.5rem;
  background: white;
  line-height: 1.6;
  color: var(--text-color);
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--primary-color);
}

.faq-answer ul, .faq-answer ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

/* FAQ Footer */
.faq-footer {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  text-align: center;
  color: white;
}

.faq-footer h3 {
  margin-bottom: 1rem;
  color: white;
  border: none;
  padding: 0;
}

.faq-footer p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.faq-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive FAQ Styles */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .faq-category {
    padding: 20px;
  }
  
  .faq-item summary {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .faq-badge {
    align-self: flex-start;
  }
  
  .faq-answer {
    padding: 20px;
  }
  
  .support-options,
  .safety-steps {
    flex-direction: column;
    gap: 15px;
  }
  
  .districts-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Types of Gay Men Section - Enhanced Styling */
.types-intro {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  border-left: 5px solid #007bff;
}

.types-intro .lead-text {
  font-size: 1.2em;
  color: #495057;
  font-weight: 500;
  margin: 0;
}

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

.type-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.type-card:hover::before {
  transform: scaleX(1);
}

.type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: #007bff;
}

.type-card.professional {
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.type-card.daddy {
  background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
}

.type-card.creative {
  background: linear-gradient(135deg, #fff 0%, #f0fff8 100%);
}

.type-icon {
  font-size: 3em;
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(0,123,255,0.1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.type-content h3 {
  font-size: 1.5em;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
}

.type-stats {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.type-stats .stat {
  background: #007bff;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 500;
}

.type-content p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.type-image {
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.type-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.type-card:hover .type-image img {
  transform: scale(1.05);
}

/* Special Highlight Section */
.special-highlight {
  margin: 50px 0;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-radius: 25px;
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.special-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.highlight-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.highlight-icon {
  font-size: 4em;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-text h4 {
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: 600;
}

.highlight-text p {
  font-size: 1.1em;
  line-height: 1.6;
  opacity: 0.95;
}

.highlight-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.highlight-image img {
  width: 200px;
  height: 150px;
  object-fit: cover;
}

/* Additional Types */
.additional-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.additional-type {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  border-left: 4px solid #28a745;
  transition: all 0.3s ease;
}

.additional-type:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.additional-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
  text-align: center;
}

.additional-content h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.3em;
  font-weight: 600;
}

.additional-content p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Types Section */
@media (max-width: 768px) {
  .types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .type-card {
    padding: 20px;
  }
  
  .type-icon {
    font-size: 2.5em;
    width: 70px;
    height: 70px;
  }
  
  .highlight-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  
  .highlight-image img {
    width: 100%;
    height: 200px;
  }
  
  .additional-types {
    grid-template-columns: 1fr;
  }
  
  .special-highlight {
    padding: 25px;
  }
}
  background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
  color: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 50px 0;
}

.cta-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.cta-content {
  flex: 1;
}

.cta-content h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-with-image,
  .area-card,
  .area-card.reverse,
  .pride-content,
  .showcase-item,
  .showcase-item.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .area-card.reverse .area-content,
  .area-card.reverse .area-image,
  .showcase-item.reverse .showcase-content,
  .showcase-item.reverse .showcase-image {
    order: unset;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .culture-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid.enhanced {
    grid-template-columns: 1fr;
  }
  
  .cta-box.premium-cta {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-icon {
    font-size: 3rem;
  }
  
  .step-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .step-number {
    align-self: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .bonus-checklist {
    grid-template-columns: 1fr;
  }
  
  .guide-cta,
  .tips-cta {
    padding: 2rem 1rem;
  }
  
  /* Testimonials mobile layout */
  .testimonials {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial {
    padding: 1.5rem;
  }
  
  .testimonial img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    display: block;
  }
  
  .testimonial blockquote {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 1rem 0;
  }
  
  .testimonial figcaption {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
  }
}

/* Sachsen Page Specific Styles */
.sachsen-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0aa37a 0%, #078b67 100%);
  color: white;
  overflow: hidden;
}

.sachsen-hero .hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.sachsen-hero .hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 0;
}

.sachsen-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.sachsen-hero .hero-sub {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 800px;
}

.sachsen-profiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.sachsen-profile-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

.sachsen-profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.sachsen-profile-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sachsen-profile-card:hover .sachsen-profile-img {
  transform: scale(1.05);
}

.sachsen-profile-info {
  padding: 1.5rem;
}

.sachsen-profile-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem 0;
}

.sachsen-profile-age {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.sachsen-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.sachsen-city {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.sachsen-city:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.sachsen-city h4 {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sachsen-city p {
  color: var(--muted);
  line-height: 1.6;
}

.sachsen-events {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.sachsen-event-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.sachsen-event-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.sachsen-event-card h4 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sachsen-event-card p {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.final-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: var(--radius);
  margin: 3rem 0;
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Responsive Design for Sachsen */
@media (max-width: 768px) {
  .sachsen-hero h1 {
    font-size: 2rem;
  }
  
  .sachsen-hero .hero-sub {
    font-size: 1.1rem;
  }
  
  .sachsen-profiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .sachsen-cities {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .sachsen-events {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .final-cta {
    padding: 3rem 1rem;
  }
  
  .final-cta h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .guide-steps {
    gap: 1rem;
  }
  
  .step-card {
    padding: 1rem;
    gap: 0.8rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .step-content h3 {
    font-size: 1.1rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .pro-tip {
    padding: 0.8rem;
    font-size: 0.85rem;
  }
  
  .sachsen-profiles {
    grid-template-columns: 1fr;
  }
  
  .sachsen-profile-card {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Leipzig Page Specific Styles */
.leipzig-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: white;
  overflow: hidden;
}

.leipzig-hero .hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.leipzig-hero .hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 0;
}

.leipzig-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.leipzig-hero .hero-sub {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 800px;
}

.leipzig-profiles {
  padding: 4rem 0;
  background: #f8fafc;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.leipzig-profile-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

.leipzig-profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.leipzig-profile-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.leipzig-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.leipzig-profile-card:hover .leipzig-profile-img img {
  transform: scale(1.05);
}

.leipzig-profile-info {
  padding: 1.5rem;
}

.leipzig-profile-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem 0;
}

.leipzig-profile-age {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 0.25rem 0;
}

.leipzig-profile-location {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

.profiles-cta {
  text-align: center;
  margin-top: 3rem;
}

.leipzig-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.leipzig-city {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.leipzig-city:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.leipzig-city h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.leipzig-events {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.leipzig-event-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.leipzig-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.leipzig-event-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: var(--radius);
  margin: 4rem 0;
}

.final-cta h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  background: white;
  color: var(--primary);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Responsive Design for Leipzig */
@media (max-width: 768px) {
  .leipzig-hero h1 {
    font-size: 2rem;
  }
  
  .leipzig-hero .hero-sub {
    font-size: 1.1rem;
  }
  
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .leipzig-cities {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .leipzig-events {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .final-cta {
    padding: 3rem 1rem;
  }
  
  .final-cta h3 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .profiles-grid {
    grid-template-columns: 1fr;
  }
  
  .leipzig-profile-card {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .leipzig-cities {
    grid-template-columns: 1fr;
  }
  
  .leipzig-events {
    grid-template-columns: 1fr;
  }
}

/* Hessen Specific Styles */
.hessen-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hessen-hero .hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hessen-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(147, 51, 234, 0.8) 100%);
  z-index: -1;
}

.hessen-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hessen-hero .hero-sub {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hessen-profiles {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.hessen-profile-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
}

.hessen-profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.hessen-profile-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.hessen-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hessen-profile-card:hover .hessen-profile-img img {
  transform: scale(1.05);
}

.hessen-profile-info {
  padding: 1.5rem;
}

.hessen-profile-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.hessen-profile-age {
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.hessen-profile-location {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.profiles-cta {
  text-align: center;
  margin-top: 3rem;
}

.hessen-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.hessen-city {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.hessen-city:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hessen-city h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.hessen-events {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.hessen-event-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.hessen-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hessen-event-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Responsive Design for Hessen */
@media (max-width: 768px) {
  .hessen-hero h1 {
    font-size: 2rem;
  }
  
  .hessen-hero .hero-sub {
    font-size: 1.1rem;
  }
  
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .hessen-cities {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hessen-events {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .profiles-grid {
    grid-template-columns: 1fr;
  }
  
  .hessen-profile-card {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hessen-cities {
    grid-template-columns: 1fr;
  }
  
  .hessen-events {
    grid-template-columns: 1fr;
  }
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.about-hero .hero-sub {
  font-size: 1.3rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.about-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

.content-sections {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.content-section {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}

.content-section h3 {
  font-size: 2.2rem;
  color: #2c5aa0;
  margin-bottom: 2rem;
  font-weight: 600;
}

.history-timeline {
  position: relative;
  padding-left: 2rem;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #2c5aa0, #1e3a5f);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: #2c5aa0;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px #2c5aa0;
}

.timeline-date {
  font-weight: 600;
  color: #2c5aa0;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.mission-item {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.mission-item:hover {
  transform: translateY(-5px);
}

.mission-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.mission-item h4 {
  font-size: 1.3rem;
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-weight: 600;
}

.mission-item p {
  color: #666;
  line-height: 1.6;
}

.team-intro {
  margin-bottom: 2rem;
}

.team-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-stat {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #2c5aa0;
}

.team-stat strong {
  display: block;
  font-size: 2rem;
  color: #2c5aa0;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-stat span {
  color: #666;
  font-size: 0.95rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #2c5aa0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.benefit-item h4 {
  font-size: 1.3rem;
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-weight: 600;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.pricing-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.premium {
  border-color: #2c5aa0;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.pricing-card.premium::before {
  content: 'Beliebt';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2c5aa0;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-card h4 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 2rem;
}

.price span {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.features li {
  padding: 0.5rem 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

.features li:last-child {
  border-bottom: none;
}

.welcome-content {
  margin-top: 2rem;
}

.welcome-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
}

.welcome-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.category-item {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.category-item h4 {
  font-size: 1.2rem;
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-weight: 600;
}

.category-item p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.development-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.dev-stat {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
  color: white;
  border-radius: 12px;
}

.dev-stat strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.dev-stat span {
  font-size: 0.95rem;
  opacity: 0.9;
}

.cta-section {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
  color: white;
  padding: 4rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 4rem;
}

.cta-section h2,
.cta-section h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: white;
}

.cta-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  color: white;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }
  
  .about-hero .hero-sub {
    font-size: 1.1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .content-section {
    padding: 2rem;
  }
  
  .content-section h3 {
    font-size: 1.8rem;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .welcome-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .development-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .team-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .cta-section {
    padding: 3rem 2rem;
  }
  
  .cta-section h3 {
    font-size: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .content-section {
    padding: 1.5rem;
  }
  
  .timeline-item {
    padding-left: 1.5rem;
  }
  
  .history-timeline {
    padding-left: 1.5rem;
  }
  
  .welcome-categories {
    grid-template-columns: 1fr;
  }
  
  .development-stats {
    grid-template-columns: 1fr;
  }
  
  .team-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .dev-stat strong {
    font-size: 2rem;
  }
  
  .price {
    font-size: 2.5rem;
  }
}

/* Gay Chat Page Styles */
.chat-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.chat-hero .hero-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.chat-hero h1 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.chat-hero .hero-sub {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.chat-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #2c5aa0;
}

.feature-item h5 {
  color: #2c5aa0;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.stats-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
  color: #555;
}

.stats-list li:last-child {
  border-bottom: none;
}

.stats-list strong {
  color: #2c5aa0;
  font-weight: 600;
}

.chatrooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.chatroom-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chatroom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.chatroom-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.chatroom-content {
  padding: 1.5rem;
}

.chatroom-content h3 {
  color: #2c5aa0;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.chatroom-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.chatroom-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.online-count {
  color: #28a745;
  font-weight: 600;
  font-size: 0.9rem;
}

.age-range {
  color: #666;
  font-size: 0.9rem;
  background: #f8f9fa;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step-item {
  text-align: center;
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-3px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #2c5aa0;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
}

.step-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 1rem 0;
  border: 3px solid #e0e0e0;
}

.step-item h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.safety-content {
  max-width: 1000px;
  margin: 0 auto;
}

.safety-intro {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.safety-img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
}

.safety-text h3 {
  color: #2c5aa0;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.safety-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.tip-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2c5aa0;
}

.tip-card h4 {
  color: #2c5aa0;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.tip-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tip-card li {
  padding: 0.5rem 0;
  color: #555;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 1.5rem;
}

.tip-card li:before {
  content: '•';
  color: #2c5aa0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.tip-card li:last-child {
  border-bottom: none;
}

.safety-contact {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.safety-contact h4 {
  color: #2c5aa0;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.tips-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.tips-main h3 {
  color: #2c5aa0;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.tips-main h4 {
  color: #333;
  font-size: 1.3rem;
  margin: 2rem 0 1rem 0;
  font-weight: 600;
}

.profile-tips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.tip-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.5rem;
  align-items: start;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tip-img {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
}

.tip-content h5 {
  color: #2c5aa0;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.tip-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tip-content li {
  padding: 0.3rem 0;
  color: #555;
  line-height: 1.5;
  position: relative;
  padding-left: 1.2rem;
}

.tip-content li:before {
  content: '✓';
  color: #28a745;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.conversation-dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.dos, .donts {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.dos {
  border-left: 4px solid #28a745;
}

.donts {
  border-left: 4px solid #dc3545;
}

.dos h5 {
  color: #28a745;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.donts h5 {
  color: #dc3545;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.dos ul, .donts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dos li, .donts li {
  padding: 0.5rem 0;
  color: #555;
  line-height: 1.5;
  border-bottom: 1px solid #f0f0f0;
}

.dos li:last-child, .donts li:last-child {
  border-bottom: none;
}

.topic-list, .etiquette-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topic-list li, .etiquette-list li {
  padding: 0.5rem 0;
  color: #555;
  border-bottom: 1px solid #e0e0e0;
}

.topic-list li:last-child, .etiquette-list li:last-child {
  border-bottom: none;
}

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

.feature-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card .feature-img {
  width: 100%;
  height: 200px;
  border-radius: 0;
  border: none;
}

.feature-card h3 {
  color: #2c5aa0;
  font-size: 1.3rem;
  margin: 1.5rem 1.5rem 1rem 1.5rem;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  margin: 0 1.5rem 1.5rem 1.5rem;
}

.cta-section {
  background: linear-gradient(135deg, #2c5aa0 0%, #667eea 100%);
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.cta-note {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 1rem;
}

/* Responsive Design for Gay Chat */
@media (max-width: 768px) {
  .chatrooms-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .safety-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .safety-tips-grid {
    grid-template-columns: 1fr;
  }
  
  .tips-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .conversation-dos-donts {
    grid-template-columns: 1fr;
  }
  
  .tip-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .chat-features {
    grid-template-columns: 1fr;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .chatroom-card {
    margin: 0 1rem;
  }
  
  .step-item {
    padding: 1.5rem;
  }
  
  .tip-card {
    padding: 1.5rem;
  }
  
  .safety-intro {
    padding: 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* Guidelines Page Styles */
.guidelines-hero {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guidelines-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

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

.guidelines-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.guidelines-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.guidelines-content {
  padding: 4rem 0;
  background: #f8f9fa;
}

.guidelines-section {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2c5aa0;
}

.guidelines-section h2 {
  color: #2c5aa0;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.guidelines-section h3 {
  color: #333;
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  font-weight: 600;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.5rem;
}

.guidelines-section p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.guidelines-section ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.guidelines-section li {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
}

.guidelines-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.rule-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
  border-left: 4px solid #2c5aa0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rule-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.rule-card h4 {
  color: #2c5aa0;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.rule-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.safety-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.safety-tip {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #28a745;
  transition: transform 0.3s ease;
}

.safety-tip:hover {
  transform: translateY(-3px);
}

.safety-tip h4 {
  color: #28a745;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.safety-tip p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.warning-box {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-left: 4px solid #f39c12;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.warning-box h4 {
  color: #856404;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.warning-box p {
  color: #856404;
  line-height: 1.6;
  margin-bottom: 0;
}

.info-box {
  background: #d1ecf1;
  border: 1px solid #bee5eb;
  border-left: 4px solid #17a2b8;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.info-box h4 {
  color: #0c5460;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.info-box p {
  color: #0c5460;
  line-height: 1.6;
  margin-bottom: 0;
}

.guidelines-cta {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  margin-top: 3rem;
}

.guidelines-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.guidelines-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.relationship-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.relationship-type {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.relationship-type:hover {
  border-color: #2c5aa0;
  transform: translateY(-2px);
}

.relationship-type h4 {
  color: #2c5aa0;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.relationship-type p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Responsive Design for Guidelines */
@media (max-width: 768px) {
  .guidelines-hero h1 {
    font-size: 2.2rem;
  }
  
  .guidelines-hero p {
    font-size: 1.1rem;
  }
  
  .guidelines-section {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .guidelines-section h2 {
    font-size: 1.8rem;
  }
  
  .rules-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .safety-tips-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .relationship-types {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .guidelines-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .guidelines-hero {
    padding: 3rem 0;
  }
  
  .guidelines-hero h1 {
    font-size: 1.8rem;
  }
  
  .guidelines-section {
    padding: 1.5rem;
  }
  
  .guidelines-section h2 {
    font-size: 1.6rem;
  }
  
  .rule-card {
    padding: 1.5rem;
  }
  
  .safety-tip {
    padding: 1.5rem;
  }
  
  .relationship-types {
    grid-template-columns: 1fr;
  }
  
  .guidelines-cta {
    padding: 3rem 0;
  }
  
  .guidelines-cta h2 {
    font-size: 1.8rem;
  }
}

/* Support & Hilfe Section Styles */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.support-option {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2c5aa0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.support-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid #e0e0e0;
  transition: border-color 0.3s ease;
}

.support-option:hover .support-img {
  border-color: #2c5aa0;
}

.support-option h3 {
  color: #2c5aa0;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.support-option p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Community Rules Section Styles */
.rule-category {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2c5aa0;
  transition: transform 0.3s ease;
}

.rule-category:hover {
  transform: translateY(-3px);
}

.rule-category h3 {
  color: #2c5aa0;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.rules-list li {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
}

.rules-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #2c5aa0;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.2;
}

.rules-list li:last-child {
  margin-bottom: 0;
}

/* Responsive Design for Support and Rules */
@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .support-option {
    padding: 1.5rem;
  }
  
  .support-img {
    width: 100px;
    height: 100px;
  }
  
  .rule-category {
    padding: 1.5rem;
  }
  
  .rule-category h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .support-option {
    padding: 1.2rem;
  }
  
  .support-img {
    width: 80px;
    height: 80px;
  }
  
  .support-option h3 {
    font-size: 1.2rem;
  }
  
  .rule-category {
    padding: 1.2rem;
  }
  
  .rules-list li {
    font-size: 1rem;
    padding-left: 1.5rem;
  }
}

/* Community Rules Grid Styles */
.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.guideline-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2c5aa0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guideline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.guideline-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid #e0e0e0;
  transition: border-color 0.3s ease;
}

.guideline-card:hover .guideline-img {
  border-color: #2c5aa0;
}

.guideline-card h3 {
  color: #2c5aa0;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.guideline-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 1.05rem;
}

/* Responsive Design for Guidelines Grid */
@media (max-width: 768px) {
  .guidelines-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .guideline-card {
    padding: 1.5rem;
  }
  
  .guideline-img {
    width: 120px;
    height: 120px;
  }
  
  .guideline-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .guideline-card {
    padding: 1.2rem;
  }
  
  .guideline-img {
    width: 100px;
    height: 100px;
  }
  
  .guideline-card h3 {
    font-size: 1.1rem;
  }
  
  .guideline-card p {
    font-size: 1rem;
  }
}

/* FAQ Page Styles */
.faq-hero {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
}

.faq-nav-section {
  background: #f8fafc;
  padding: 2rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.faq-cat-btn {
  background: white;
  color: #2c5aa0;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  border: 2px solid #2c5aa0;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.faq-cat-btn:hover {
  background: #2c5aa0;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.faq-content {
  padding: 4rem 0;
  background: #ffffff;
}

.faq-category {
  margin-bottom: 4rem;
}

.category-title {
  color: #2c5aa0;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2c5aa0, #1e3a8a);
  border-radius: 2px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.faq-question {
  background: #f8fafc;
  color: #2c5aa0;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1.5rem 2rem;
  margin: 0;
  cursor: pointer;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  transition: all 0.3s ease;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c5aa0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-question:hover {
  background: #e2e8f0;
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, padding 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  padding: 2rem;
  max-height: none !important;
  overflow: visible;
  opacity: 1;
}

.faq-img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  float: left;
  margin: 0 1.5rem 1rem 0;
  border: 3px solid #e2e8f0;
}

.faq-answer p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  text-align: justify;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
  .faq-categories {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .faq-cat-btn {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
  }
  
  .category-title {
    font-size: 1.8rem;
  }
  
  .faq-question {
    font-size: 1.1rem;
    padding: 1.2rem 1.5rem;
  }
  
  .faq-question::after {
    right: 1.5rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 1.5rem;
  }
  
  .faq-img {
    width: 100%;
    height: 200px;
    float: none;
    margin: 0 0 1rem 0;
  }
}

@media (max-width: 480px) {
  .faq-content {
    padding: 2rem 0;
  }
  
  .category-title {
    font-size: 1.5rem;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .faq-question::after {
    right: 1rem;
    font-size: 1.3rem;
  }
  
  .faq-answer {
    padding: 0 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 1rem;
  }
  
  .faq-answer p {
    font-size: 1rem;
  }
  
  .faq-img {
    height: 150px;
  }
}

/* Privacy Policy Styles */
.privacy-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 40vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

.privacy-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.privacy-hero .hero-sub {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.privacy-content {
  padding: 4rem 0;
  background: #f8f9fa;
}

.privacy-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-toc {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.privacy-toc h2 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #667eea;
}

.privacy-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-toc li {
  margin-bottom: 0.5rem;
}

.privacy-toc a {
  color: #666;
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.privacy-toc a:hover,
.privacy-toc a.active {
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  padding-left: 1rem;
}

.privacy-main {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.privacy-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.privacy-section h2 {
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #667eea;
}

.privacy-section h3 {
  color: #444;
  font-size: 1.4rem;
  margin: 2rem 0 1rem 0;
}

.privacy-section h4 {
  color: #555;
  font-size: 1.2rem;
  margin: 1.5rem 0 0.8rem 0;
}

.privacy-section p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-section ul {
  color: #666;
  line-height: 1.6;
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.privacy-section li {
  margin-bottom: 0.5rem;
}

.contact-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #667eea;
  margin: 1rem 0;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info strong {
  color: #333;
}

.privacy-footer {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 2rem;
  border: 1px solid #e9ecef;
}

.privacy-footer p {
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Design for Privacy Page */
@media (max-width: 768px) {
  .privacy-hero h1 {
    font-size: 2rem;
  }
  
  .privacy-hero .hero-sub {
    font-size: 1rem;
  }
  
  .privacy-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .privacy-toc {
    position: static;
    order: 2;
  }
  
  .privacy-main {
    padding: 2rem;
    order: 1;
  }
  
  .privacy-section h2 {
    font-size: 1.5rem;
  }
  
  .privacy-section h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .privacy-content {
    padding: 2rem 0;
  }
  
  .privacy-toc,
  .privacy-main {
    padding: 1.5rem;
  }
  
  .privacy-hero {
    min-height: 30vh;
  }
  
  .privacy-hero h1 {
    font-size: 1.8rem;
  }
}

/* Gay Daddy Page Styles */
.gay-daddy-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 60vh;
  position: relative;
}

.gay-daddy-hero .hero-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.gay-daddy-hero h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gay-daddy-hero .hero-sub {
  color: #f8f9fa;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Daddy Types Grid */
.daddy-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.daddy-type-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.daddy-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.daddy-type-card .type-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #007bff;
}

.daddy-type-card h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.5rem 1.5rem 1rem;
}

.daddy-type-card p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0 1.5rem 1.5rem;
}

.type-features {
  list-style: none;
  padding: 0;
  margin: 0 1.5rem 2rem;
}

.type-features li {
  color: #495057;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f8f9fa;
  position: relative;
  padding-left: 1.5rem;
}

.type-features li:before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.type-features li:last-child {
  border-bottom: none;
}

/* Content Images */
.content-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.image-container {
  text-align: center;
  margin: 2rem 0;
}

/* Sidebar Enhancements */
.sidebar-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid #007bff;
}

.sidebar-card h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-list,
.benefit-list,
.tip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li,
.benefit-list li,
.tip-list li {
  color: #495057;
  padding: 0.5rem 0;
  border-bottom: 1px solid #dee2e6;
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li:before,
.benefit-list li:before,
.tip-list li:before {
  content: "•";
  color: #007bff;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.feature-list li:last-child,
.benefit-list li:last-child,
.tip-list li:last-child {
  border-bottom: none;
}

.sidebar-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.image-caption {
  color: #6c757d;
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
  margin: 0;
}

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

.city-list li {
  color: #495057;
  padding: 0.75rem 0;
  border-bottom: 1px solid #dee2e6;
}

.city-list li:last-child {
  border-bottom: none;
}

.city-list strong {
  color: #2c3e50;
  font-weight: 600;
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
  border-color: #007bff;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-item.active .faq-question {
  background-color: #e3f2fd;
  color: #1976d2;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007bff;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fff;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: #495057;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 0;
  color: #fff;
}

.cta-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.cta-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #f8f9fa;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #667eea;
}

.cta-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .gay-daddy-hero h1 {
    font-size: 2.2rem;
  }
  
  .gay-daddy-hero .hero-sub {
    font-size: 1.1rem;
  }
  
  .daddy-types-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .daddy-type-card .type-image {
    height: 180px;
  }
  
  .cta-section .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .gay-daddy-hero {
    min-height: 50vh;
  }
  
  .gay-daddy-hero h1 {
    font-size: 1.8rem;
  }
  
  .gay-daddy-hero .hero-sub {
    font-size: 1rem;
  }
  
  .daddy-type-card {
    margin-bottom: 1rem;
  }
  
  .daddy-type-card .type-image {
    height: 150px;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .faq-answer p {
    padding: 0 1rem 1rem;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ===== BI.HTML SPECIFIC STYLES ===== */

/* Bi Hero Section */
.bi-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.bi-hero .hero-overlay {
  background: rgba(102, 126, 234, 0.8);
}

.bi-hero h1 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.bi-hero .hero-sub {
  color: #f8f9fa;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 800px;
}

/* Bi Image Container */
.bi-image-container {
  margin: 2rem 0;
  text-align: center;
}

.bi-image-container .content-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Bi Types Grid */
.bi-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.bi-type-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.bi-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.bi-type-card .type-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.bi-type-card h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.bi-type-card p {
  color: #6c757d;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Characteristics List */
.characteristics-list {
  margin: 2rem 0;
}

.characteristic-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #667eea;
}

.characteristic-item h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.characteristic-item p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.comparison-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid #e9ecef;
}

.comparison-card h3 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.comparison-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.comparison-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.comparison-list li {
  padding: 0.5rem 0;
  color: #6c757d;
  border-bottom: 1px solid #e9ecef;
  position: relative;
  padding-left: 1.5rem;
}

.comparison-list li:before {
  content: "✓";
  color: #667eea;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-note {
  background: #e3f2fd;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
  border-left: 4px solid #2196f3;
}

.comparison-note p {
  margin: 0;
  color: #1565c0;
  font-weight: 500;
}

/* Cities Grid */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.city-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: 1px solid #e9ecef;
}

.city-card:hover {
  transform: translateY(-3px);
}

.city-card h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.city-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.city-card p {
  color: #6c757d;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Event List */
.event-list {
  list-style: none;
  padding: 0;
}

.event-list li {
  padding: 0.5rem 0;
  color: #6c757d;
  border-bottom: 1px solid #e9ecef;
  position: relative;
  padding-left: 1.5rem;
}

.event-list li:before {
  content: "📅";
  position: absolute;
  left: 0;
}

.event-list li:last-child {
  border-bottom: none;
}

/* Finding Methods */
.finding-methods {
  margin: 2rem 0;
}

.method-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid #e9ecef;
}

.method-card h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.method-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 1rem 0;
}

.method-card p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Platform Features */
.platform-features {
  margin: 2rem 0;
}

.feature-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #28a745;
}

.feature-item h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.feature-item p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Dating Tips */
.dating-tips {
  list-style: none;
  padding: 0;
}

.dating-tips li {
  padding: 0.8rem 0;
  color: #6c757d;
  border-bottom: 1px solid #e9ecef;
  position: relative;
  padding-left: 2rem;
}

.dating-tips li:before {
  content: "💡";
  position: absolute;
  left: 0;
}

.dating-tips li:last-child {
  border-bottom: none;
}

/* CTA Card */
.cta-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  text-align: center;
}

.cta-card h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-card p {
  color: #f8f9fa;
  margin-bottom: 1.5rem;
}

.cta-card .btn-primary {
  background: #ffffff;
  color: #667eea;
  border: none;
  font-weight: 600;
}

.cta-card .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

/* Bi FAQ Styles */
.faq-container .faq-item {
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid #e9ecef;
  overflow: hidden;
}

.faq-container .faq-question {
  background: #f8f9fa;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-container .faq-question:hover {
  background: #e9ecef;
}

.faq-container .faq-question h3 {
  margin: 0;
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
  flex: 1;
}

.faq-container .faq-icon {
  font-size: 1.5rem;
  color: #667eea;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-container .faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-container .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-container .faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-container .faq-answer p {
  padding: 1.5rem;
  margin: 0;
  color: #6c757d;
  line-height: 1.6;
}

/* Responsive Design for Bi Page */
@media (max-width: 768px) {
  .bi-hero h1 {
    font-size: 2rem;
  }
  
  .bi-hero .hero-sub {
    font-size: 1rem;
  }
  
  .bi-types-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cities-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .method-card {
    padding: 1.5rem;
  }
  
  .method-image {
    height: 150px;
  }
  
  .faq-container .faq-question {
    padding: 1rem;
  }
  
  .faq-container .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-container .faq-answer p {
    padding: 1rem;
  }
}

/* Profile Page Specific Styles */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.profile-grid .profile-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.profile-grid .profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.profile-grid .profile-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profile-grid .profile-card:hover .profile-img {
  transform: scale(1.08);
}

.profile-grid .profile-info {
  padding: 18px;
  text-align: center;
}

.profile-grid .profile-info h3 {
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.profile-grid .profile-info p {
  margin: 0 0 8px 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

.profile-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  background: var(--success);
  color: white;
}

/* Guide Content Styles */
.guide-content {
  margin: 40px 0;
}

.guide-step {
  margin-bottom: 40px;
  padding: 30px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}

.guide-step h3 {
  margin: 0 0 16px 0;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}

.guide-step p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
  font-size: 16px;
}

/* Tips Grid */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.tip-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-3px);
}

.tip-card h3 {
  margin: 0 0 16px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.tip-card p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

/* Functions Content */
.functions-content {
  margin: 40px 0;
}

.function-item {
  margin-bottom: 35px;
  padding: 25px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary);
}

.function-item h3 {
  margin: 0 0 14px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.function-item p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

/* Warning Content */
.warning-content {
  margin: 40px 0;
}

.warning-signs {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--danger);
  margin-bottom: 30px;
}

.warning-signs h3 {
  margin: 0 0 20px 0;
  font-size: 22px;
  font-weight: 600;
  color: var(--danger);
}

.warning-signs ul {
  margin: 0;
  padding-left: 20px;
}

.warning-signs li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.warning-signs strong {
  color: var(--text);
  font-weight: 600;
}

.verification-tips {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--success);
}

.verification-tips h3 {
  margin: 0 0 16px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--success);
}

.verification-tips p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

/* Safety Grid */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.safety-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--warning);
  transition: transform 0.3s ease;
}

.safety-card:hover {
  transform: translateY(-3px);
}

.safety-card h3 {
  margin: 0 0 16px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.safety-card p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

/* Community Content */
.community-content {
  margin: 40px 0;
}

.community-content > p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px;
  text-align: center;
}

.community-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.feature-item {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--primary);
}

.feature-item h3 {
  margin: 0 0 16px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.feature-item p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

.success-stories {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 40px;
  text-align: center;
  border: 2px solid var(--primary);
}

.success-stories h3 {
  margin: 0 0 20px 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
}

.success-stories p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* Responsive Design for Profile Page */
@media (max-width: 1024px) {
  .profile-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .community-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tips-grid,
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .profile-grid .profile-img {
    height: 180px;
  }
  
  .guide-step,
  .tip-card,
  .function-item,
  .warning-signs,
  .verification-tips,
  .safety-card,
  .feature-item {
    padding: 20px;
  }
  
  .community-features {
    grid-template-columns: 1fr;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .success-stories {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
  
  .profile-grid .profile-img {
    height: 250px;
  }
  
  .guide-step h3 {
    font-size: 20px;
  }
  
  .tip-card h3,
  .function-item h3,
  .safety-card h3,
  .feature-item h3 {
    font-size: 18px;
  }
}

/* Community Page Styles */
.community-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.community-hero .hero-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.community-feature {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.community-feature.reverse {
  grid-template-columns: 1.5fr 1fr;
}

.community-feature.reverse .feature-img {
  order: 2;
}

.community-feature.reverse .feature-content {
  order: 1;
}

.feature-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.feature-img:hover {
  transform: translateY(-5px);
}

.feature-content h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.feature-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 16px;
}

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

.event-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.event-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.event-content {
  padding: 30px;
}

.event-content h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 16px;
  font-weight: 600;
}

.event-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 12px;
}

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

.guideline-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guideline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.guideline-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
}

.guideline-card h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 16px;
  font-weight: 600;
}

.guideline-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

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

.story-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-3px);
}

.story-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.story-content h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 16px;
  font-weight: 600;
}

.story-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 12px;
}

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

.regional-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.regional-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.regional-card h3 {
  font-size: 20px;
  color: #333;
  margin: 20px 20px 12px;
  font-weight: 600;
}

.regional-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0 20px 20px;
}

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

.benefit-item {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #667eea;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-item h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
}

.benefit-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Community Page Responsive Design */
@media (max-width: 1024px) {
  .community-feature {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .community-feature.reverse {
    grid-template-columns: 1fr;
  }
  
  .community-feature.reverse .feature-img,
  .community-feature.reverse .feature-content {
    order: unset;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
  }
  
  .story-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .community-hero {
    min-height: 400px;
  }
  
  .feature-img {
    height: 250px;
  }
  
  .feature-content h3 {
    font-size: 24px;
  }
  
  .event-content {
    padding: 20px;
  }
  
  .event-content h3 {
    font-size: 20px;
  }
  
  .guideline-card {
    padding: 20px;
  }
  
  .guideline-card h3 {
    font-size: 20px;
  }
  
  .story-card {
    padding: 20px;
  }
  
  .story-content h3 {
    font-size: 20px;
  }
  
  .regional-card h3 {
    font-size: 18px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .community-hero {
    min-height: 350px;
  }
  
  .feature-content h3 {
    font-size: 22px;
  }
  
  .event-content h3 {
    font-size: 18px;
  }
  
  .guideline-card h3 {
    font-size: 18px;
  }
  
  .story-content h3 {
    font-size: 18px;
  }
  
  .regional-card h3 {
    font-size: 16px;
  }
  
  .benefit-item h3 {
    font-size: 16px;
  }
}

/* Threesome Page Specific Styles */
.threesome-grid {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}

.threesome-feature {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.threesome-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.threesome-feature.reverse {
  grid-template-columns: 2fr 1fr;
}

.threesome-feature .feature-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
}

.threesome-feature .feature-content h3 {
  color: #2c5530;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.threesome-feature .feature-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

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

.type-card.threesome-type {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.type-card.threesome-type:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.type-card .type-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.type-card .type-content {
  padding: 25px;
}

.type-card .type-content h3 {
  color: #2c5530;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.type-card .type-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 12px;
}

.comparison-grid.threesome-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.comparison-card.threesome-comparison {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.comparison-card.threesome-comparison:hover {
  transform: translateY(-3px);
}

.comparison-card .comparison-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.comparison-card .comparison-content h3 {
  color: #2c5530;
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 16px;
}

.guidelines-grid.threesome-guidelines {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.guideline-card.threesome-guideline {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.guideline-card.threesome-guideline:hover {
  transform: translateY(-3px);
}

.guideline-card .guideline-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.guideline-card .guideline-content {
  padding: 25px;
}

.guideline-card .guideline-content h3 {
  color: #2c5530;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.guideline-card .guideline-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 12px;
}

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

.date-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.date-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.date-card .date-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.date-card .date-content {
  padding: 25px;
}

.date-card .date-content h3 {
  color: #2c5530;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.date-card .date-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 12px;
}

.germany-features {
  margin-top: 40px;
}

.germany-feature {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.germany-feature.reverse {
  grid-template-columns: 2fr 1fr;
}

.germany-feature .germany-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.germany-feature .germany-content h3 {
  color: #2c5530;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.germany-feature .germany-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

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

.benefit-item.threesome-benefit {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.benefit-item.threesome-benefit:hover {
  transform: translateY(-3px);
}

.benefit-item .benefit-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.benefit-item .benefit-content {
  padding: 25px;
}

.benefit-item .benefit-content h3 {
  color: #2c5530;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-item .benefit-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Responsive Design for Threesome Page */
@media (max-width: 768px) {
  .threesome-feature,
  .threesome-feature.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .threesome-feature .feature-img {
    height: 220px;
  }
  
  .types-grid.threesome-types {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .comparison-grid.threesome-comparison {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .guidelines-grid.threesome-guidelines {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .date-ideas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .germany-feature,
  .germany-feature.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .germany-feature .germany-img {
    height: 220px;
  }
  
  .benefits-grid.threesome-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .threesome-feature .feature-content h3 {
    font-size: 24px;
  }
  
  .type-card .type-content h3 {
    font-size: 20px;
  }
  
  .comparison-card .comparison-content h3 {
    font-size: 22px;
  }
  
  .guideline-card .guideline-content h3 {
    font-size: 20px;
  }
  
  .date-card .date-content h3 {
    font-size: 20px;
  }
  
  .germany-feature .germany-content h3 {
    font-size: 24px;
  }
  
  .benefit-item .benefit-content h3 {
    font-size: 18px;
  }
}
}