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

body {
  font-family: 'Inter var', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: -0.011em;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  color: #1a1a1a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 1.5rem 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #C53030;
  letter-spacing: -0.5px;
}

.navbar nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 3rem;
}

.navbar nav a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar nav a:hover,
.navbar nav a.active {
  color: #C53030;
}

.cta-button {
  background: #C53030;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.cta-button:hover {
  background: #A02626;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(197, 48, 48, 0.3);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #C53030 0%, #E53E3E 50%, #FEB2B2 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-container {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8%;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  color: white;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 500px;
  line-height: 1.6;
}

.hero-button {
  background: white;
  color: #C53030;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.hero-visual {
  flex: 1;
  position: relative;
}

.hero-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C53030, #E53E3E);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #C53030, #E53E3E);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #C53030;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Section Styles */
.section {
  padding: 8rem 8%;
  position: relative;
}

.section-white {
  background: #ffffff;
}

.section-gray {
  background: #f8f9fa;
}

.section-dark {
  background: #1a1a1a;
  color: white;
}

.section-red {
  background: linear-gradient(135deg, #C53030 0%, #E53E3E 100%);
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-badge {
  display: inline-block;
  background: #FEE2E2;
  color: #C53030;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
}

.about-visual {
  background: linear-gradient(135deg, #C53030, #E53E3E);
  border-radius: 20px;
  padding: 3rem;
  color: white;
  text-align: center;
}

/* Program Section */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.program-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #C53030, #E53E3E);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(197, 48, 48, 0.15);
}

.program-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #C53030, #E53E3E);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.program-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.program-description {
  color: #666;
  line-height: 1.6;
}

/* Founder Section */
.founder-content {
  display: grid;
  grid-template-columns: minmax(300px, 400px) 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.founder-image {
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0,0, 0.1);
}

.founder-photo {
  width: 100%;
  height: 500px. !important;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  transition: transform 0.3s ease;
}

.founder-

.founder-text {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.founder-name {
  font-size: 2rem;
  font-weight: 800;
  color: #C53030;
  margin-bottom: 0.5rem;
}

.founder-title {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.founder-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.submit-button.loading{
  position:relative;
  color:transparent;
}

.submit-button.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2x solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

.submit-button {
  background: white;
  color: #C53030;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #999;
  text-align: center;
  padding: 3rem 8%;
  border-top: 1px solid #333;
}

.footer p {
  font-size: 0.95rem;
}

/* Decorative elements */
.decoration-dots {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, #C53030 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.1;
}

.dots-1 {
  top: 10%;
  right: 10%;
}

.dots-2 {
  bottom: 10%;
  left: 10%;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

.form-response {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  display: none;
}
.form-response.success {
  display: block;
  background: rgba(16, 185 , 129, 0.1);
  color: #10B981;
}
.form-response.error{
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

/* Large Desktops */
@media (min-width: 1400px) {
  .hero-container,
  .container {
    max-width: 1400px;
  }
}

/* Desktop/Laptop */
@media (max-width: 1200px) {
  .navbar {
    padding: 1.5rem 6%;
  }
  
  .section {
    padding: 6rem 6%;
  }
  
  .hero-container {
    padding: 0 6%;
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .navbar {
    padding: 1.5rem 5%;
  }

  .section {
    padding: 5rem 5%;
  }

  .hero-container {
    padding: 0 5%;
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .about-content,
  .founder-content,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mobille-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer; 
  padding: 4px;
}

.mobile-menu-btn span{
  width: 25px;
  height: 2px;
  background: #C53030;
  transition: 0.3s;
}

.error-message {
  color: #EF4444;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #EF4444;
  
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .navbar {
    padding: 1.2rem 4%;
    flex-direction: column;
    gap: 1rem;
  }

  .navbar nav ul {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }

  .logo {
    font-size: 1.6rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .section {
    padding: 4rem 4%;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-card {
    padding: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    padding: 2rem;
  }

  .founder-photo {
    height: 300px;
  }

  .founder-text {
    padding: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }
}

/* Mobile Landscape */
@media (max-width: 640px) {
  .navbar {
    padding: 1rem 3%;
  }

  .navbar nav ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .logo {
    font-size: 1.4rem;
  }

  .section {
    padding: 3rem 3%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-button {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-visual,
  .founder-text,
  .contact-form {
    padding: 1.5rem;
  }

  .program-card {
    padding: 1.5rem;
  }

  .decoration-dots {
    display: none;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .navbar {
    padding: 0.8rem 3%;
  }

  .logo {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .section {
    padding: 2.5rem 3%;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .hero-container {
    gap: 2rem;
    padding: 0 3%;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-button {
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-visual {
    padding: 2rem;
  }

  .program-card {
    padding: 1.2rem;
  }

  .program-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .program-title {
    font-size: 1.1rem;
  }

  .program-description {
    font-size: 0.9rem;
  }

  .founder-photo {
    height: 250px;
    font-size: 1rem;
  }

  .founder-text {
    padding: 1.2rem;
  }

  .founder-name {
    font-size: 1.6rem;
  }

  .founder-title {
    font-size: 1rem;
  }

  .founder-description {
    font-size: 1rem;
  }

  .contact-info h3 {
    font-size: 1.6rem;
  }

  .contact-info p {
    font-size: 1rem;
  }

  .contact-form {
    padding: 1.2rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .submit-button {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }

  .footer {
    padding: 2rem 3%;
    font-size: 0.85rem;
  }
}

/* Very Small Mobile Devices */
@media (max-width: 360px) {
  .navbar {
    padding: 0.7rem 2%;
  }

  .logo {
    font-size: 1.1rem;
  }

  .section {
    padding: 2rem 2%;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .hero-card {
    padding: 1.2rem;
  }

  .about-visual,
  .founder-text,
  .contact-form,
  .program-card {
    padding: 1rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.8rem;
  }
}

/* iOS Specific Optimizations */
@supports (-webkit-touch-callout: none) {
  .form-group input,
  .form-group textarea {
    -webkit-appearance: none;
    appearance: none;
    appearance: none;
    appearance: none;
    appearance: none;
    appearance: none;
    appearance: none;
    appearance: none;
    border-radius: 12px;
  }
  
  .cta-button,
  .hero-button,
  .submit-button {
    -webkit-appearance: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .program-card:hover,
  .cta-button:hover,
  .hero-button:hover,
  .submit-button:hover {
    transform: none;
  }
  
  .program-card:active,
  .cta-button:active,
  .hero-button:active,
  .submit-button:active {
    transform: scale(0.98);
  }
}

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

.logo-image {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
  object-fit: contain;
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  .logo-image {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 30px;
  }
}

:root {
  --primary-color: #C53030;
  --primarty-dark: #A02626;
  --primary-light: #FEE2E2;
  --text: #1F2937;
  --text-light: #4B5563;
  --background: #F9FAFB;
  --white: #FFFFFF;
  --shadow: rgba(0, 0, 0, 0.1);

}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .founder-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .founder-image {
    margin: 0 auto;
  }
  
  .founder-photo {
    height: 400px; 
  }
}

@media (max-width: 768px) {
  .founder-photo {
    height: 400px; 
  }
  .founder-text{
    padding: 2rem;    /* Policy Pages Styles */
    .policy-content {
        max-width: 800px;
        margin: 6rem auto;
        padding: 0 2rem;
    }
    
    /* Add these styles at the end of your existing CSS file */
  
  /* Policy Pages Styles */
  .policy-page {
      background-color: #f5f5f5;
      margin: 0;
      padding-top: 80px;
  }
  
  .policy-wrapper {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
  }
  
  .policy-navbar {
      background: white;
      padding: 1rem 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
  }
  
  .policy-navbar .logo {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 2rem;
  }
  
  .policy-content {
      flex: 1;
      max-width: 800px;
      width: 90%;
      margin: 40px auto;
      padding: 3rem;
      background: white;
      border-radius: 24px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  
  .policy-content h1 {
      color: #C53030;
      font-size: 2.5rem;
      margin-bottom: 1rem;
      font-weight: 700;
      line-height: 1.2;
  }
  
  .policy-section {
      margin: 2.5rem 0;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .policy-section:last-child {
      border-bottom: none;
      padding-bottom: 0;
  }
  
  .policy-section h2 {
      color: #1F2937;
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
      font-weight: 600;
  }
  
  .policy-section p {
      color: #4B5563;
      line-height: 1.8;
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
  }
  
  .policy-section ul {
      list-style: none;
      margin: 1.5rem 0;
      padding-left: 0;
  }
  
  .policy-section li {
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 1rem;
      line-height: 1.6;
      color: #4B5563;
  }
  
  .policy-section li:before {
      content: "•";
      color: #C53030;
      font-weight: bold;
      position: absolute;
      left: 0;
  }
  
  .last-updated {
      color: #6B7280;
      font-size: 0.95rem;
      margin-bottom: 3rem;
  }
  
  .contact-email {
      background: #F9FAFB;
      padding: 1.5rem;
      border-radius: 12px;
      margin-top: 1rem;
  }
  
  .policy-footer {
      background: white;
      padding: 2rem 0;
      margin-top: auto;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .policy-footer .container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  
  .policy-footer nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
      margin: 0;
      padding: 0;
  }
  
  .policy-footer a {
      color: #4B5563;
      text-decoration: none;
      transition: color 0.3s ease;
  }
  
  .policy-footer a:hover {
      color: #C53030;
  }
  
  /* Policy Pages Responsive */
  @media (max-width: 768px) {
      .policy-content {
          padding: 2rem;
          margin: 30px auto;
      }
  
      .policy-content h1 {
          font-size: 2rem;
      }
  
      .policy-section h2 {
          font-size: 1.5rem;
      }
  
      .policy-footer .container {
          flex-direction: column;
          text-align: center;
          gap: 1rem;
      }
  
      .policy-footer nav ul {
          justify-content: center;
      }
  }
  
  @media (max-width: 480px) {
      .policy-content {
          padding: 1.5rem;
          width: 95%;
          margin: 20px auto;
      }
  
      .policy-navbar .logo {
          padding: 0 1rem;
      }
  
      .policy-navbar .logo-image {
          height: 32px;
      }
  
      .policy-footer .container {
          padding: 0 1rem;
      }
  
      .policy-section h2 {
          font-size: 1.3rem;
      }
  
      .policy-section p, 
      .policy-section li {
          font-size: 1rem;
      }
  }/* Policy Pages Styles */
  .policy-content {
    max-width: 800px;
    margin: 8rem auto 6rem;
    padding: 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  
  .policy-content h1 {
    color: #C53030;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .policy-content section {
    margin: 3.5rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .policy-content section:last-child {
    border-bottom: none;
  }
  
  .policy-content h2 {
    color: #1F2937;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  
  .policy-content p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  .policy-content ul {
    list-style: none;
    margin: 1.5rem 0;
  }
  
  .policy-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #4B5563;
  }
  
  .policy-content li:before {
    content: "•";
    color: #C53030;
    font-weight: bold;
    position: absolute;
    left: 0;
  }
  
  .policy-content a {
    color: #C53030;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: #9B2C2C;
  }
  
  /* Date styling */
  .policy-content p:first-of-type {
    color: #6B7280;
    font-size: 0.95rem;
    margin-bottom: 3rem;
  }
  
  /* Contact section specific */
  .policy-content section:last-child p {
    background: #F9FAFB;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 0;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .policy-content {
      margin: 6rem auto 4rem;
      padding: 2rem;
    }
  
    .policy-content h1 {
      font-size: 2rem;
    }
  
    .policy-content h2 {
      font-size: 1.5rem;
    }
  
    .policy-content section {
      margin: 2.5rem 0;
    }
  }
  
  @media (max-width: 480px) {
    .policy-content {
      margin: 4rem auto 2rem;
      padding: 1.5rem;
    }
  }