.policy-section {
        padding: 120px 0 80px;
        background: #f8f9fa;
        min-height: 100vh;
      }

      .policy-content {
        max-width: 800px;
        margin: 0 auto;
        background: white;
        padding: 50px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .policy-content h1 {
        color: #2c3e50;
        text-align: center;
        margin-bottom: 30px;
      }

      .policy-content h2 {
        color: #3498db;
        margin-top: 40px;
        margin-bottom: 20px;
      }

      .policy-content h3 {
        color: #2c3e50;
        margin-top: 25px;
        margin-bottom: 15px;
      }

      .policy-content p {
        margin-bottom: 15px;
        line-height: 1.7;
      }

      .policy-content ul {
        margin-bottom: 20px;
        padding-left: 20px;
      }

      .policy-content li {
        margin-bottom: 10px;
        line-height: 1.6;
      }

      .last-updated {
        background: #e8f4fd;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 30px;
        border-left: 4px solid #3498db;
      }

      .contact-info-box {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 10px;
        margin-top: 40px;
        border: 1px solid #e9ecef;
      }

      .cookie-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }

      .cookie-table th {
        background: #3498db;
        color: white;
        padding: 15px;
        text-align: left;
        font-weight: 600;
      }

      .cookie-table td {
        padding: 15px;
        border-bottom: 1px solid #e9ecef;
      }

      .cookie-table tr:last-child td {
        border-bottom: none;
      }

      .cookie-table tr:hover {
        background: #f8f9fa;
      }

      .cookie-type {
        font-weight: 600;
        color: #2c3e50;
      }

      .essential {
        color: #e74c3c;
      }

      .functional {
        color: #f39c12;
      }

      .analytics {
        color: #27ae60;
      }

      .marketing {
        color: #9b59b6;
      }

      @media (max-width: 768px) {
        .policy-content {
          padding: 30px 20px;
          margin: 0 15px;
        }

        .cookie-table {
          font-size: 14px;
        }

        .cookie-table th,
        .cookie-table td {
          padding: 10px;
        }
      }