@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

/* Container & Section */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    margin: 4rem auto 8rem; /* increased bottom margin from 6rem to 8rem */

  }
  
  .page-section {
    margin: 5rem auto;
    text-align: center;
    color: #023047;
    font-family: 'Montserrat', sans-serif;
  }
  
  /* Header */
  .page-header {
    margin-bottom: 2rem;
    animation: fadeIn 1.2s ease;
  }
  
  .page-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.9rem;
    letter-spacing: 0.06em;
    text-shadow: 0 0 6px rgba(2, 48, 71, 0.2);
    margin-bottom: 0.5rem;
    color: #023047;
  }
  
  /* Subtitles (h3) */
  .page-subtitle {
    color: #023047;
    font-weight: 600;
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
  }
  
  /* Paragraphs */
  .page-text {
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 500;
    color: #034078;
    text-align: left;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
  }
  
  /* Utility: fadeIn animation */
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* Shared container for simple pages */
.page-container {
    max-width: 800px;
    margin: 4rem auto 6rem; /* space top & bottom */
    background: #ffffff;
    padding: 2.5rem 3rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(3, 64, 119, 0.1);
    font-family: 'Montserrat', sans-serif;
    color: #023047;
    line-height: 1.6;
    position: relative;
    z-index: 1;
  }
  
  /* Header styles */
  .page-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .page-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #0077b6;
    letter-spacing: 0.06em;
    text-shadow: 0 0 6px rgba(0, 119, 182, 0.2);
    margin: 0;
  }
  
  /* Paragraph text */
  .page-text {
    font-weight: 500;
    font-size: 1.2rem;
    color: #045061;
    margin-bottom: 0;
  }
  
  /* Optional subtitle style */
  .page-subtitle {
    font-weight: 600;
    font-size: 1.15rem;
    margin: 1.5rem 0 1rem;
    color: #034078;
  }
  
  /* Footer spacing fix */
  body {
    padding-bottom: 6rem; /* give footer some breathing space */
  }


  
  