
    
    .content {
      flex: 1;
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }
    
    .content h1 {
      color: #333;
      font-size: 2.5rem;
      margin-bottom: 20px;
      text-align: center;
    }
    
    .content p {
      color: #555;
      line-height: 1.6;
      margin-bottom: 15px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    
    /* DÜZELTİLMİŞ FOOTER STİLLERİ */
.creative-footer {
  width: calc(100vw - 8px); /* 2px azalt */
  position: relative;
  left: 50%;                /* ortala */
  margin-left: -50vw;       /* tam sola taşı */
  
  padding: 50px 40px 9px;  /* üst ve alt padding, sağ sol padding içerik boşluğu */
  box-sizing: border-box;   /* padding genişlik içine dahil */
  
  background: linear-gradient(135deg, #ff6b6b 0%, #ffbe0b 100%);
  color: #222;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: space-between;
      align-items: flex-start;
    }

    .footer-brand {
      flex: 1 1 300px;
      max-width: 350px;
      position: relative;
      z-index: 2;
    }

    .footer-brand h1 {
      font-size: 3rem;
      font-weight: 900;
      margin: 0 0 10px;
      color: #222;
      letter-spacing: 2px;
      animation: popIn 1s ease forwards;
    }

    .footer-brand h1 span {
      color: #fff;
      text-shadow: 0 2px 10px rgba(255, 190, 11, 0.8);
    }

    .footer-brand p {
      font-size: 1.1rem;
      line-height: 1.5;
      margin-bottom: 25px;
      color: #333;
    }

    .btn-primary {
      display: inline-block;
      background: #222;
      color: #ffbe0b;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      text-decoration: none;
    }

    .btn-primary:hover {
      background: #ff6b6b;
      color: #fff;
      box-shadow: 0 6px 25px rgba(255, 107, 107, 0.7);
      transform: scale(1.05);
    }

    .footer-nav {
      flex: 1 1 200px;
      max-width: 220px;
      z-index: 2;
    }

    .footer-nav h2 {
      font-size: 1.4rem;
      margin-bottom: 20px;
      color: #222;
      font-weight: 700;
      letter-spacing: 1.1px;
    }

    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-nav ul li {
      margin-bottom: 15px;
    }

    .footer-nav ul li a {
      color: #333;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: color 0.3s ease;
    }

    .footer-nav ul li a:hover {
      color: #fff;
      text-shadow: 0 0 6px #ffbe0b;
    }

    .footer-social {
      flex: 1 1 200px;
      max-width: 220px;
      z-index: 2;
    }

    .footer-social h2 {
      font-size: 1.4rem;
      margin-bottom: 20px;
      color: #222;
      font-weight: 700;
      letter-spacing: 1.1px;
    }

    .social-icons {
      display: flex;
      gap: 20px;
    }

    .social-icons a {
      font-size: 1.8rem;
      color: #222;
      background: #fff;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .social-icons a:hover {
      color: #ffbe0b;
      box-shadow: 0 0 20px #ffbe0b, 0 0 40px #ff6b6b;
      transform: scale(1.15);
    }

    .footer-bottom {
      text-align: center;
      color: #222;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.05em;
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      padding-top: 20px;
      margin-top: 40px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(4px);
      z-index: 2;
      position: relative;
    }

    /* Animasyonlar */
    @keyframes popIn {
      0% {opacity: 0; transform: scale(0.7);}
      100% {opacity: 1; transform: scale(1);}
    }

    /* Responsive */
    @media (max-width: 900px) {
      .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: left;
      }

      .footer-brand, .footer-nav, .footer-social {
        max-width: 100%;
      }

      .social-icons {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .footer-brand h1 {
        font-size: 2.2rem;
      }

      .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
      }

      .footer-nav ul li {
        margin-bottom: 12px;
      }

      .footer-nav ul li a {
        font-size: 0.95rem;
      }

      .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
      }
    }