* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Alexandria", sans-serif;
      }

      .footer {
        background: #3c245e;
        color: white;
        padding: 64px 20px;
        min-height: 268px;
        display: flex;
        justify-content: center;
        width: 100%;
        position: relative;
        bottom: 0;
      }

      .footer-container {
        width: 100%;
        max-width: 1200px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
      }

      .footer-left {
        max-width: 417px;
      }

      .logo {
        width: 157.56px;
        height: 48px;
      }

      .logo-box {
        background: white;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
      }

      .logo-box span {
        color: #3c245e;
        font-size: 2rem;
        font-weight: 700;
        font-style: italic;
      }

      .logo-text {
        font-size: 1.75rem;
        font-weight: 600;
        font-style: italic;
        letter-spacing: 1px;
      }

      .footer-description {
        font-size: 1rem;
        line-height: 1.5;
        font-weight: 400;
      }

      .footer-right {
        text-align: right;
      }

      .footer-nav {
        margin-bottom: 30px;
      }

      .footer-nav a {
        display: block;
        color: white;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 8px;
        transition: opacity 0.3s;
      }

      .footer-nav a:hover {
        opacity: 0.8;
      }

      .footer-bottom {
        font-size: 1rem;
      }

      .footer-bottom a {
        font-size: 0.75rem;
        font-weight: 400;
        color: white;
        text-decoration: underline;
      }

      .footer-bottom p {
        font-size: 0.75rem;
        font-weight: 400;
      }

      @media screen and (max-width: 980px) {
        .footer-container {
          flex-direction: column;
          align-items: center;
          gap: 24px;
        }

        .footer-left {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 12px;
        }

        .footer-description,
        .footer-nav a {
          text-align: center;
        }

        .footer-nav {
          margin-bottom: 24px;
        }

        .footer-nav a:last-child {
          margin-bottom: 0;
        }

        .footer-bottom {
          display: flex;
          flex-direction: column;
          align-items: center;
        }
      }

      @media (max-width: 468px) {
        .footer {
          padding: 64px 12px;
        }
      }