/*:root {
      --primary-blue: #003366;
      --accent-green: #2ca01c;
      --light-gray: #e5e7eb;
      --text-light: #d1d5db;
    }*/

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #f9fafb;
    }

    .footer {
      box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
      /*background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
      color: var(--text-light);*/
      padding: 50px 20px 30px;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 40px;
    }

    .footer h4 {
      color: #07345d;
      margin-bottom: 16px;
      font-size: 18px;
    }

    .footer p, .footer a {
      color: /*var(--text-light)*/black;
      font-size: 14px;
      text-decoration: none;
      line-height: 1.9;
    }
    #icon{
      color:#07345d;
    }
    .footer a:hover {
      color: #07345d;
      font-weight: bolder;
    }

    .logo-text {
      font-size: 26px;
      font-weight: bold;
      color: #ffffff;
    }

    .logo-text span {
      color: var(--accent-green);
    }

    .social-icons a {
      margin-right: 12px;
      font-size: 18px;
      color: white;
      transition: color 0.3s;
    }
    
    .social-icons a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      font-size: 13px;
      color: /*#cbd5e1*/#07345d;
      font-weight: bolder;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      padding-top: 20px;
    }

    @media (max-width: 600px) {
      .logo-text {
        text-align: center;
      }

      .footer h4 {
        text-align: center;
      }

      .social-icons {
        text-align: center;
      }
    }