
/*Header (jak na podstronach)*/
#header {
    background: url("../../images/section.jpg") no-repeat fixed center;
    min-width: 100%;
    min-height: 400px;
    height: 30vh;
    background-size: cover;
    z-index: 0;
    display: flex;
    align-items: center;
}

#header .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 150px;
    width: 100%;
}

#header .content .title {
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 52px;
    font-weight: 900;
    text-align: center;
}

#header .content .title span {
    color: var(--main-color);
}

#header .content .description {
    color: var(--description-color);
    font-size: 18px;
    max-width: 700px;
    line-height: 1.6;
    text-align: center;
}

/*Treść polityki*/
#privacy .content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 980px;
    margin: 0 auto;
}

#privacy h2 {
    font-family: var(--display-font);
    font-size: 26px;
    font-weight: 700;
    color: var(--white-color);
    position: relative;
    padding-bottom: 12px;
}

#privacy h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    border-radius: 5px;
    background: var(--main-color);
}

#privacy p, #privacy li {
    color: var(--description-color);
    font-size: 16px;
    line-height: 1.7;
}

#privacy ul {
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#privacy li::marker {
    color: var(--main-color);
}

#privacy a {
    color: var(--link-color);
    text-decoration: none;
}

#privacy a:hover {
    text-decoration: underline;
}

#privacy .updated {
    font-size: 14px;
    opacity: 0.8;
}

/*Responsive*/
@media screen and (max-width: 819px) {
    #header .content { padding: 150px 30px; }
    #header .content .title { font-size: 32px; }
}
