   /* Color Palette & Variables */
   :root {
       --bg-color: #f8fafc;
       --text-color: #0f172a;
       --card-bg: #ffffff;
       --border-color: #e2e8f0;

       --primary-blue: #0f172a;
       --accent-green: #15803d;
       --accent-gold: #eab308;
       --hover-blue: #1e293b;
   }

   @media (prefers-color-scheme: dark) {
       :root {
           --bg-color: #0b0f19;
           --text-color: #f1f5f9;
           --card-bg: #111827;
           --border-color: #1f2937;

           --primary-blue: #1e293b;
           --hover-blue: #334155;
       }
   }

   /* Base Style */
   * {
       box-sizing: border-box;
       margin: 0;
       padding: 0;
       font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
   }

   header {
       position: fixed;
       width: 100%;
       background-color: var(--primary-blue);
       z-index: 1000;
       border-bottom: 6px solid var(--accent-green);
   }

   body {
       background-color: var(--bg-color);
       color: var(--text-color);
       line-height: 1.6;
       transition: background-color 0.3s, color 0.3s;
   }

   .logo {
       font-weight: 800;
       font-size: 1.25rem;
       color: var(--accent-gold);
       text-transform: uppercase;
       letter-spacing: 1px;
   }

   .nav {
       max-width: 1200px;
       margin: 0 auto;
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 1rem 2rem;
   }

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

   nav a {
       color: white;
       text-decoration: none;
       font-weight: 500;
       font-size: 0.95rem;
       transition: color 0.2s;
   }

   nav a:hover {
       color: var(--accent-gold);
   }

   .lang-select {
       display: none;
       background: rgba(255,255,255,0.1);
       color: white;
       border: 1px solid rgba(255,255,255,0.2);
       padding: 0.4rem 0.8rem;
       border-radius: 4px;
       cursor: pointer;
       font-size: 0.85rem;
   }

   .lang-select option {
       background: var(--primary-blue);
       color: white;
   }

   section {
       max-width: 1200px;
       margin: 0 auto;
       padding: 5rem 2rem;
       scroll-margin-top: 80px;
   }

   section:nth-child(even) {
       background-color: rgba(21, 128, 61, 0.03);
       border-radius: 16px;
   }

   h2 {
       font-size: 2.25rem;
       margin-bottom: 1.5rem;
       position: relative;
       padding-bottom: 0.5rem;
       display: inline-block;
   }

   h2::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 100%;
       height: 4px;
       background-color: var(--accent, var(--accent-gold));
       border-radius: 2px;
   }

   p {
       margin-bottom: 1rem;
       color: inherit;
       opacity: 0.9;
   }

   .img {
       background-color: var(--placeholder-bg);
       color: var(--placeholder-text);
       border: 2px dashed var(--border-color);
       border-radius: 8px;
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       text-align: center;
       font-weight: 500;
       font-size: 0.9rem;
       padding: 1rem;
   }

   .portrait {
       aspect-ratio: 3 / 4;
       width: 100%;
       box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
   }

   .landscape {
       aspect-ratio: 16 / 9;
       width: 100%;
       margin-bottom: 1.5rem;
   }

   .banner {
       background: linear-gradient(135deg, var(--primary-blue) 35%, #05070a 100%);
       color: white;
       padding: 6rem 2rem;
       text-align: center;
       border-bottom: 6px solid var(--accent-gold);
   }

   .banner h1 {
       font-size: 3rem;
       margin-bottom: 1rem;
   }

   .banner p {
       margin: 0 auto;
       font-size: 1.25rem;
       color: #cbd5e1;
   }

   /* Grid Framework */
   .priority-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
       gap: 2rem;
       margin-top: 2.5rem;
   }

   .card {
       background-color: var(--card-bg);
       border: 1px solid var(--border-color);
       padding: 2rem;
       border-radius: 8px;
       box-shadow: 0 1px 3px rgba(0,0,0,0.05);
       transition: transform 0.2s, box-shadow 0.2s;
   }

   .card h3 {
       margin-bottom: 1rem;
       color: var(--accent-green);
       font-size: 1.35rem;
   }

   form {
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
   }

   label {
    display: block;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    font-size: 0.9rem;
   }

   input:not([type="hidden"]),
   textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    background: var(--bg-color);
    color: var(--text-color);
    border-radius: 6px;
    font: inherit;
   }

   input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
   }

   button {
    width: 100%;
    padding: 0.75rem;
    margin-top: 1.5rem;
    background: var(--accent-green);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
   }

   button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
   }

   .form-status {
       margin-top: 1rem;
       padding: 0.75rem;
       border-radius: 6px;
       font-size: 0.9rem;
       font-weight: 500;
       text-align: center;
   }
   /* The fade-out animation */
   @keyframes fadeOut {
       0% { opacity: 1; visibility: visible; }
       99% { opacity: 0; visibility: visible; }
       100% { opacity: 0; visibility: hidden; } /* Completely removes from layout flow */
   }
   .form-status.success {
       background: rgba(21, 128, 61, 0.15); /* Semi-transparent accent-green */
       color: #22c55e;
       border: 1px solid rgba(21, 128, 61, 0.3);
       animation: fadeOut 0.5s ease-out 5s forwards;
   }
   .form-status.error {
       background: rgba(239, 68, 68, 0.15); /* Semi-transparent red */
       color: #ef4444;
       border: 1px solid rgba(239, 68, 68, 0.3);
       animation: fadeOut 0.5s ease-out 5s forwards;
   }


   /* Lists for constituents section */
   .resource-list {
       list-style: none;
   }

   .resource-list li {
       padding: 0.75rem 0;
       border-bottom: 1px solid var(--border-color);
       display: flex;
       justify-content: space-between;
       align-items: center;
   }

   footer {
       background-color: var(--primary-blue);
       color: #ffffff;
       text-align: center;
       padding: 3rem 2rem;
       border-top: 4px solid var(--accent-green);
   }

   /* Mobile Optimization */
   @media (max-width: 768px) {
       nav ul {
           display: none;
       }
       .banner h1 {
           font-size: 2.25rem;
       }
       .about-layout {
           flex-direction: column-reverse;
           gap: 2rem;
       }
       .about-image-wrapper {
           width: 100%;
           max-width: 320px;
           margin: 0 auto;
       }
   }

