
    html, body {
      height: 100%;
      margin: 0;
      padding: 0;
    }

    .page-wrapper {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* Footer */
    .footer-container {
      background-color: #CC5500;
      color: #081C3A;
      padding: 20px 0;
      font-size: 16px;
      width: 100%;
      margin-top: auto;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .footer-left {
      flex: 1 1 300px;
      text-align: center;
    }

    .footer-left img {
      width: 24vw;          /* 💻 Masaüstünde büyük görünür */
      max-width: 400px;
      min-width: 100px;
      height: auto;
      margin-bottom: 10px;
    }

    .footer-left p {
      font-weight: 600;
      margin: 0;
      line-height: 1.4;
    }

    .footer-right {
      flex: 1 1 300px;
      text-align: left;
    }

    .footer-right p {
      margin: 5px 0;
      line-height: 1.5;
      font-weight: 600;
    }

    .footer-right i {
      margin-right: 8px;
    }

    .footer-right a {
      color: #081C3A;
      text-decoration: none;
      font-weight: 600;
    }

    .footer-right a:hover {
      text-decoration: underline;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 15px;
      color: #081C3A;
      font-weight: 600;
    }

    /* -------------------------- */
    /* MOBİL UYUMLULUK (768px altı) */
    /* -------------------------- */
    @media (max-width: 768px) {
      .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 10px;
      }

      .footer-left,
      .footer-right {
        flex: 1 1 100%;
        margin-bottom: 15px;
        text-align: center;
      }

      .footer-right p {
        font-size: 15px;
      }

      .footer-left img {
        width: 200px; /* 📱 Mobilde küçültülmüş logo */
      }
    }
  