@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css');

:root {
  --main-white: #fff;
  --accent-gold: #ffcc29;
  --accent-blue: #004d99;
  --deep-blue: #002244;
  --text-color: #333;
  --hover-glow: 0 0 10px rgba(255, 204, 41, 0.6);
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Major Mono Display', monospace;
  color: var(--text-color);
  background-color: var(--main-white);
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: var(--accent-gold);
}

.to-header-bar-spark {
    background: var(--accent-blue);
    padding: 0.8rem 1.2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }
  
  .to-header-container-glow {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .to-header-logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-family: 'El Messiri', sans-serif;
  }
   
  .to-header-btn-wrap {
    display: flex;
    gap: 0.6rem;
  }
  
  .to-header-btn {
    padding: 0.55rem 1.1rem;
    border-radius: 10px;
    border: none;
    font-family: 'Major Mono Display', monospace;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: var(--hover-glow);
  }
  
  .to-header-login-btn {
    background-color: var(--accent-gold);
    color: var(--deep-blue);
  }
  
  .to-header-login-btn:hover {
    background-color: #ffd84f;
  }
  
  .to-header-register-btn {
    background-color: var(--main-white);
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
  }
  
  .to-header-register-btn:hover {
    background-color: var(--accent-gold);
    color: var(--deep-blue);
  }
  
  @media (max-width: 768px) {
    .to-header-container-glow {
      flex-direction: column;
      gap: 1rem;
    }
  
    .to-header-btn-wrap {
      flex-direction: column;
      width: 100%;
    }
  
    .to-header-btn {
      width: 100%;
      justify-content: center;
    }
  }

.to-login-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .to-login-popup-window {
    background-color: #fefefe;
    border-radius: 16px;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    position: relative;
    font-family: 'Major Mono Display', monospace;
    animation: fadeIn 0.3s ease;
  }
  
  .to-login-title {
    font-family: 'El Messiri', sans-serif;
    color: var(--accent-blue);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
  }
  
  .to-login-input-wrap {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
  }
  
  .to-login-input-wrap label {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-color);
  }
  
  .to-login-input-wrap input {
    padding: 0.6rem 0.8rem;
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    font-size: 1rem;
  }
  
  .to-login-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .to-login-checkbox input {
    margin-top: 0.2rem;
  }
  
  .to-login-error-msg {
    color: crimson;
    font-size: 0.85rem;
    min-height: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .to-login-btn {
    background: var(--accent-gold);
    color: var(--deep-blue);
    padding: 0.7rem 1rem;
    border: none;
    width: 100%;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .to-login-btn:disabled {
    background: #ddd;
    color: #888;
    cursor: not-allowed;
  }
  
  .to-login-close-btn {
    background: none;
    border: none;
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.4rem;
    color: #888;
    cursor: pointer;
  }
  
  .to-login-success-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: var(--accent-blue);
    color: var(--main-white);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .to-login-success-content {
    font-family: 'Major Mono Display', monospace;
    font-size: 1.2em;
    text-align: center;
  }
  
  .to-login-success-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  
  @media (max-width: 480px) {
    .to-login-popup-window {
      padding: 1.2rem;
    }
  
    .to-login-btn {
      font-size: 0.9rem;
    }
  }

  .to-register-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .to-register-popup-window {
    background: #ffffff;
    padding: 2rem;
    border-radius: 18px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    font-family: 'Major Mono Display', monospace;
    animation: fadeIn 0.3s ease;
    position: relative;
  }
  
  .to-register-title {
    font-family: 'El Messiri', sans-serif;
    color: var(--accent-blue);
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .to-register-input-wrap {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
  }
  
  .to-register-input-wrap label {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    color: var(--text-color);
  }
  
  .to-register-input-wrap input {
    padding: 0.7rem 0.8rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 2px solid var(--accent-blue);
  }
  
  .to-register-checkbox {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .to-register-error-msg {
    color: crimson;
    text-align: center;
    font-size: 0.9rem;
    min-height: 1.2rem;
    transition: all 0.3s ease;
  }
  
  .to-register-btn {
    background: var(--accent-gold);
    color: var(--deep-blue);
    padding: 0.7rem;
    width: 100%;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .to-register-btn:disabled {
    background: #ccc;
    color: #999;
    cursor: not-allowed;
  }
  
  .to-register-close-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #999;
    cursor: pointer;
  }
  
  .to-register-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .to-register-success-content {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
  }
  
  .to-register-success-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
  }
  
  @media (max-width: 480px) {
    .to-register-popup-window {
      padding: 1.2rem;
    }
  }

.to-aboutus-container {
    display: flex;
    justify-content: space-between;
    padding: 50px 10%;
    background-color: var(--deep-blue);
    color: var(--main-white);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 2s ease-in-out;
    max-width: 1260px;
    margin: 33px auto;
  }
  
  .to-aboutus-text {
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .to-aboutus-text h2 {
    text-align: center;
    font-family: 'El Messiri', sans-serif;
    font-size: 2.5em;
    color: var(--accent-gold);
  }
  
  .to-aboutus-text p {
    text-align: center;
    font-family: 'Major Mono Display', monospace;
    font-size: 1.1em;
    margin: 20px 0;
  }
  
  .to-aboutus-login-btn {
    background-color: var(--accent-gold);
    color: var(--deep-blue);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'El Messiri', sans-serif;
    font-size: 1.2em;
    transition: transform 0.3s ease;
  }
  
  .to-aboutus-login-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--hover-glow);
  }
  
  .to-aboutus-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
  }
  
  @media (max-width: 1024px) {
    .to-aboutus-container {
      flex-direction: column;
      align-items: center;
      padding: 40px 5%;
    }
  
    .to-aboutus-text {
      max-width: 100%;
      text-align: center;
    }
  
    .to-aboutus-image img {
      max-width: 80%;
    }
  }
  
  @media (max-width: 768px) {
    .to-aboutus-container {
      padding: 30px 5%;
    }
  }

  .to-advantages-unique {
    width: 100%;
    background-image: url('../to-images/to-image-three.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }

  .to-advantages-unique-block {
    max-width: 1260px;
    margin: 33px auto;
    padding: 50px 10%;
    background-color: #004d9983;
    color: var(--main-white);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 2s ease-in-out;
  }
  
  .to-advantages-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .to-advantages-header h2 {
    font-family: 'El Messiri', sans-serif;
    font-size: 2.5em;
    color: var(--accent-gold);
  }
  
  .to-advantages-header p {
    font-family: 'Major Mono Display', monospace;
    font-size: 1.1em;
    margin-top: 10px;
  }
  
  .to-advantages-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .to-advantages-card {
    background-color: var(--main-white);
    color: var(--deep-blue);
    padding: 30px;
    width: 48%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .to-advantages-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  .to-advantages-icon {
    font-size: 3em;
    color: var(--accent-gold);
    margin-bottom: 15px;
  }
  
  .to-advantages-card h3 {
    font-family: 'El Messiri', sans-serif;
    font-size: 1.6em;
    color: var(--accent-blue);
  }
  
  .to-advantages-card p {
    font-family: 'Major Mono Display', monospace;
    font-size: 1.1em;
    margin-top: 15px;
  }

  @media (max-width: 1024px) {
    .to-advantages-cards {
      justify-content: center;
    }
  
    .to-advantages-card {
      width: 100%;
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .to-advantages-card {
      width: 100%;
    }
  
    .to-advantages-header h2 {
      font-size: 2em;
    }
  
    .to-advantages-header p {
      font-size: 1em;
    }
  }

  .to-responsible-play-container {
    background-color: var(--deep-blue);
    color: var(--main-white);
    padding: 60px 10%;
    max-width: 1260px;
    margin: 33px auto;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    animation: fadeIn ease-in 2s;
  }
  
  .to-responsible-play-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .to-responsible-play-head {
    text-align: center;
    margin-bottom: 35px;
  }
  
  .to-responsible-play-title {
    font-family: 'El Messiri', sans-serif;
    font-size: 2.5em;
    color: var(--accent-gold);
    margin-bottom: 10px;
  }
  
  .to-responsible-play-subtext {
    font-family: 'Major Mono Display', monospace;
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto;
    color: #ddd;
  }
  
  .to-responsible-play-points {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
  }
  
  .to-responsible-play-point {
    display: flex;
    align-items: flex-start;
    font-family: 'Major Mono Display', monospace;
    font-size: 1.05em;
    line-height: 1.6;
  }
  
  .to-responsible-play-text {
    color: #f5f5f5;
  }
  
  .to-responsible-play-emphasis {
    color: var(--accent-gold);
    font-style: normal;
  }
  
  .to-responsible-play-age {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .to-responsible-play-illustration {
    margin-top: 40px;
  }
  
  @media (max-width: 1024px) {
    .to-responsible-play-container {
      padding: 50px 5%;
    }
  
    .to-responsible-play-title {
      font-size: 2em;
    }
  }
  
  @media (max-width: 768px) {
    .to-responsible-play-point {
      flex-direction: column;
      font-size: 1em;
    }
  
    .to-responsible-play-title {
      font-size: 1.7em;
    }
  
    .to-responsible-play-subtext {
      font-size: 1em;
    }

    .to-responsible-play-text a {
        font-size: 0.7rem;
        color: #f5f5f5;
      }
  }
  
  .to-footer-shine {
    background-color: var(--deep-blue);
    padding: 40px 20px 0;
    color: var(--main-white);
    font-family: 'Major Mono Display', monospace;
  }
  
  .to-footer-shine-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .to-footer-shine-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .to-footer-shine-link {
    font-family: 'El Messiri', sans-serif;
    color: var(--accent-gold);
    font-weight: 700;
    transition: color 0.3s ease;
  }
  
  .to-footer-shine-link:hover {
    color: var(--accent-blue);
  }
  
  .to-footer-shine-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .to-footer-shine-age-badge img,
  .to-footer-shine-badge img {
    background-color: #fff;
    padding: 9px 18px;
    border-radius: 10px;
    box-shadow: var(--hover-glow);
  }
  
  .to-footer-shine-cookie {
    background-color: var(--accent-blue);
    width: 100%;
    padding: 15px 20px;
  }
  
  .to-footer-shine-cookie-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .to-footer-shine-cookie-text {
    font-size: 14px;
    color: var(--main-white);
    text-align: center;
    max-width: 600px;
  }
  
  .to-footer-shine-cookie-link {
    color: var(--accent-gold);
    text-decoration: underline;
    margin-left: 6px;
  }
  
  .to-footer-shine-cookie-btn {
    font-family: 'Major Mono Display', monospace;
    background-color: var(--accent-gold);
    color: var(--deep-blue);
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .to-footer-shine-cookie-btn:hover {
    background-color: #ffc107;
    color: #000;
  }
  
  @media (max-width: 768px) {
    .to-footer-shine-badges {
      gap: 20px;
    }
    .to-footer-shine-cookie-inner {
      padding: 10px;
    }
  }

  @media (max-width: 480px) {

    .to-footer-shine-navigation {
        justify-content: center;
        align-items: center;
    }
    .to-footer-shine-badges {
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  }

  .to-agegate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.99);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'El Messiri', sans-serif;
  }
  
  .to-agegate-box {
    background-color: #111;
    color: #f9f9f9;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 90%;
    box-shadow: 0 0 30px rgba(255, 204, 41, 0.3);
  }
  
  .to-agegate-title {
    font-size: 24px;
    color: #ffcc29;
    margin-bottom: 15px;
  }
  
  .to-agegate-desc {
    font-size: 16px;
    margin-bottom: 25px;
    color: #eee;
    font-family: 'Major Mono Display', monospace;
  }
  
  .to-agegate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .to-agegate-btn-yes,
  .to-agegate-btn-no {
    font-family: 'Major Mono Display', monospace;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease;
  }
  
  .to-agegate-btn-yes {
    background-color: #ffcc29;
    color: #002244;
  }
  
  .to-agegate-btn-no {
    background-color: #555;
    color: #fff;
  }
  
  .to-agegate-btn-yes:hover {
    background-color: #ffd966;
  }
  
  .to-agegate-btn-no:hover {
    background-color: #888;
  }
  
  .to-cookies-popup {
    background-color: var(--accent-blue);
    width: 100%;
    padding: 15px 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
  }
  
  .to-cookies-popup-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .to-cookies-popup-text {
    font-size: 14px;
    color: var(--main-white);
    text-align: center;
    max-width: 600px;
    font-family: 'Major Mono Display', monospace;
  }
  
  .to-cookies-popup-link {
    color: var(--accent-gold);
    text-decoration: underline;
    margin-left: 6px;
  }
  
  .to-cookies-popup-btn {
    font-family: 'Major Mono Display', monospace;
    background-color: var(--accent-gold);
    color: var(--deep-blue);
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .to-cookies-popup-btn:hover {
    background-color: #ffc107;
    color: #000;
  }
  
  @media (max-width: 480px) {
    .to-agegate-box {
      padding: 20px;
    }
  
    .to-agegate-title {
      font-size: 20px;
    }
  
    .to-agegate-desc {
      font-size: 14px;
    }
  
    .to-cookies-popup-text {
      font-size: 12px;
    }
  }

  .to-cookiepolicy-core-wrapper {
    background-color: #f9f9f9;
    padding: 60px 20px;
  }
  
  .to-cookiepolicy-core-container {
    max-width: 960px;
    margin: 0 auto;
  }
  
  .to-cookiepolicy-core-title {
    font-family: 'El Messiri', sans-serif;
    font-size: 32px;
    color: var(--deep-blue);
    margin-bottom: 20px;
    text-align: center;
  }
  
  .to-cookiepolicy-core-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Major Mono Display', monospace;
  }
  
  .to-cookiepolicy-core-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
  }
  
  .to-cookiepolicy-core-item {
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.5;
    color: #222;
    font-family: 'Major Mono Display', monospace;
  }
  
  .to-cookiepolicy-core-item i {
    font-size: 20px;
    color: var(--accent-blue);
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .to-cookiepolicy-core-cta {
    font-size: 14px;
    text-align: center;
    font-family: 'Major Mono Display', monospace;
    color: #333;
  }
  
  .to-cookiepolicy-core-link {
    color: var(--accent-gold);
    text-decoration: underline;
    margin-left: 4px;
  }
  
  @media (max-width: 768px) {
    .to-cookiepolicy-core-title {
      font-size: 26px;
    }
  
    .to-cookiepolicy-core-desc,
    .to-cookiepolicy-core-cta {
      font-size: 14px;
    }
  
    .to-cookiepolicy-core-item {
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .to-cookiepolicy-core-wrapper {
      padding: 40px 15px;
    }
  
    .to-cookiepolicy-core-title {
      font-size: 22px;
    }
  
    .to-cookiepolicy-core-item i {
      font-size: 18px;
      margin-right: 8px;
    }
  }

  .to-privacyshield-section-shell {
    background-color: #eef6fa;
    padding: 70px 25px;
  }
  
  .to-privacyshield-section-box {
    max-width: 980px;
    margin: 0 auto;
  }
  
  .to-privacyshield-title-main {
    font-family: 'El Messiri', sans-serif;
    font-size: 34px;
    text-align: center;
    color: var(--accent-blue);
    margin-bottom: 25px;
  }
  
  .to-privacyshield-subtext-intro {
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    color: #3a3a3a;
    font-family: 'Major Mono Display', monospace;
    margin-bottom: 40px;
  }
  
  .to-privacyshield-list-principles {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .to-privacyshield-list-item {
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    font-family: 'Major Mono Display', monospace;
    line-height: 1.6;
    color: #1e1e1e;
  }
  
  .to-privacyshield-list-item i {
    font-size: 22px;
    margin-right: 12px;
    color: var(--deep-blue);
    flex-shrink: 0;
  }
  
  .to-privacyshield-list-item a {
    font-size: 13px;
    color: var(--accent-gold);
    text-decoration: underline;
  }
  
  .to-privacyshield-final-note {
    font-size: 14px;
    text-align: center;
    font-family: 'Major Mono Display', monospace;
    color: #444;
    margin-top: 35px;
  }
  
  .to-privacyshield-policy-link {
    color: var(--accent-gold);
    font-weight: bold;
  }
  
  @media (max-width: 992px) {
    .to-privacyshield-title-main {
      font-size: 30px;
    }
    .to-privacyshield-subtext-intro {
      font-size: 15px;
    }
  }
  
  @media (max-width: 768px) {
    .to-privacyshield-section-shell {
      padding: 50px 20px;
    }
    .to-privacyshield-title-main {
      font-size: 26px;
    }
    .to-privacyshield-list-item {
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .to-privacyshield-title-main {
      font-size: 22px;
    }
    .to-privacyshield-list-item i {
      font-size: 18px;
      margin-right: 8px;
    }
  }