/* ===== CORE STYLES ===== */
:root {
    /* Color Palette */
    --primary-blue: #002147;       /* Zimbabwe blue */
    --gold-accent: #FFD700;        /* Zimbabwe gold */
    --dark-text: #333333;
    --medium-text: #555555;
    --light-text: #777777;
    --background-light: #f8f9fa;
    --white: #ffffff;
  
    /* Fonts */
    --heading-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --body-font: 'Open Sans', Arial, Helvetica, sans-serif;
  
    /* Spacing */
    --section-padding: 80px 0;
    --mobile-padding: 50px 0;
  }
  
  /* ===== BASE STYLES ===== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--body-font);
    font-size: 16px;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--white);
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* ===== TYPOGRAPHY ===== */
  h1, h2, h3, h4 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.3;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--medium-text);
  }
  
  /* ===== BUTTONS ===== */
  .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .btn-primary {
    background-color: var(--gold-accent);
    color: var(--primary-blue);
  }
  
  .btn-primary:hover {
    background-color: #e6c300;
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    background-color: var(--primary-blue);
    color: white;
    border: 2px solid var(--primary-blue);
  }
  
  .btn-secondary:hover {
    background-color: transparent;
    color: var(--primary-blue);
  }
  
  /* ===== HEADER ===== */
  .main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }
  
  .logo img {
    height: 50px;
    width: auto;
  }
  
  .main-nav ul {
    display: flex;
    list-style: none;
  }
  
  .main-nav li {
    margin-left: 30px;
  }
  
  .main-nav a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .main-nav a:hover {
    color: var(--primary-blue);
  }
  
  /* ===== FOOTER ===== */
  .main-footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 30px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
  }
  
  .footer-col h4 {
    color: var(--gold-accent);
    font-size: 1.25rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-accent);
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col li {
    margin-bottom: 12px;
  }
  
  .footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-col a:hover {
    color: var(--gold-accent);
    padding-left: 5px;
  }
  
  .contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .contact-info i {
    color: var(--gold-accent);
    margin-right: 10px;
    width: 20px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background: var(--gold-accent);
    color: var(--primary-blue);
  }
  
  .newsletter input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
  }
  
  .newsletter button {
    width: 100%;
    padding: 12px;
    background: var(--gold-accent);
    color: var(--primary-blue);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .newsletter button:hover {
    background: var(--white);
  }
  
  .footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    margin-top: 40px;
    text-align: center;
  }
  
  .legal-links {
    margin-top: 15px;
  }
  
  .legal-links a {
    color: rgba(255,255,255,0.8);
    margin: 0 10px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .legal-links a:hover {
    color: var(--gold-accent);
    text-decoration: underline;
  }
  
  /* ===== RESPONSIVE STYLES ===== */
  @media (max-width: 992px) {
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .main-nav {
      display: none;
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .footer-col {
      text-align: center;
    }
  
    .footer-col h4::after {
      left: 50%;
      transform: translateX(-50%);
    }
  
    .contact-info li {
      justify-content: center;
    }
  
    .social-links {
      justify-content: center;
    }
  }