*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}


/* =========================================
   BODY
========================================= */

body{
  background:#e9eaec;
  font-family:Arial, Helvetica, sans-serif;
  color:#1c1c1c;
}


/* =========================================
   CONTENEDOR GENERAL
========================================= */

.privacy-page{
  min-height:100vh;

  padding:70px 75px;

  display:grid;
  grid-template-columns:38% 62%;

  gap:60px;
}


/* =========================================
   COLUMNA IZQUIERDA
========================================= */

.privacy-header{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}


/* =========================================
   TITULO
========================================= */

h1{
  font-size:95px;
  line-height:.9;

  font-weight:400;

  letter-spacing:-4px;
}


/* =========================================
   BOTÓN VOLVER
========================================= */

.back-link{
  width:fit-content;

  text-decoration:none;

  color:#1c1c1c;
  background:#f0d229;

  font-size:22px;

  padding:0 6px;

  transition:opacity .3s ease;
}

.back-link:hover{
  opacity:.7;
}


/* =========================================
   CONTENIDO
========================================= */

.privacy-content{
  max-width:850px;
  align-self:center;
}


/* PÁRRAFOS */

.privacy-content p{
  font-size:18px;
  line-height:1.45;

  margin-bottom:28px;
}


/* SUBTÍTULOS */

.privacy-content h2{
  font-size:22px;
  font-weight:700;

  margin-bottom:8px;
  margin-top:26px;
}


/* LINKS */

.privacy-content a{
  color:#1c1c1c;
  font-weight:700;
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:900px){

  .privacy-page{
    grid-template-columns:1fr;
    padding:40px 24px;
  }

  h1{
    font-size:58px;
  }

  .privacy-header{
    gap:40px;
  }

  .privacy-content p{
    font-size:16px;
  }

}