body {
      padding-top: 100px !important;
    }

    .navbar {
      background-color: #1c1533;
    }

    .navbar .nav-link {
      color: #f5f5f7;
      font-size: 1.8rem;
      margin: 0 15px;
    }

    .navbar .nav-link:hover {
      transform: scale(1.25, 1.25);
      transition: transform 0.1s ease;
    }

    .navbar img {
      width: 60px;
      height: 60px;
      margin-right: 10px;
    }

    footer {
      background-color: #1c1533;
      padding: 40px 0;
      text-align: center;
      color: #b0a9c1;
    }

    .footer-link {
      color: #3ec1d3;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-link:hover {
      color: #ffd54f;
    }

    .icon-container {
      position: relative;
      display: inline-block;
      width: 25px;
      height: 25px;
    }

    .footer-icon {
      position: absolute;
      top: 0;
      left: 0;
      width: 25px;
      height: 25px;
      transition: opacity 0.3s ease;
    }

    .icon-default {
      opacity: 1;
    }

    .icon-hover {
      opacity: 0;
    }

    .icon-container:hover .icon-default {
      opacity: 0;
    }

    .icon-container:hover .icon-hover {
      opacity: 1;
    }

    .privacy-section {
      padding: 40px 0;
    }

    .privacy-card {
      background-color: #1c1533;
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 25px;
      border: 1px solid #2a2247;
      height: 100%;
    }

    .privacy-card h3 {
      color: #ffffff;
      font-size: 1.8rem;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .privacy-card p {
      color: #b0a9c1;
      font-size: 1.5rem;
      line-height: 1.5;
    }

    .privacy-highlight {
      background-color: #1c1533;
      border-radius: 10px;
      padding: 30px;
      margin: 30px 0;
    }

    .privacy-highlight h4 {
      color: #ffffff;
      font-size: 1.8rem;
      margin-bottom: 15px;
    }

    .privacy-highlight p {
      color: #b0a9c1;
      font-size: 1.5rem;
      line-height: 1.5;
    }

    .privacy-list {
      list-style: none;
      padding-left: 0;
    }

    .privacy-list li {
      color: #b0a9c1;
      font-size: 1.5rem;
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
    }

    .privacy-list li::before {
      content: "•";
      color: #3ec1d3;
      font-size: 1.8rem;
      position: absolute;
      left: 0;
      top: -2px;
    }

    .section-title {
      color: #ffffff;
      font-size: 2.2rem;
      margin-bottom: 30px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }