body {
    color: black;
    background-color: white;
    padding-bottom: 60px;
    margin: 0;
}

header {
    background: white;
    padding: 50px;
    box-shadow: 0 5px 15px rgba( 0, 0, 0, 0.1);
}
.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
}

.pp-btn, .tos-btn {
    background-color: white;
    border-radius: 999px;
    padding: 10px 25px;
    font-size: 28px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease;
    z-index: 2;
    white-space: nowrap;
}

.grad-wrapper {
    position: relative;
    background: linear-gradient(135deg, rgb(255, 208, 0), rgb(255, 77, 0), rgb(255, 0, 149));
    padding: 2px;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 1;
}
.grad-wrapper:hover {
    transform: translateY(-5px) scale(1.05);
}
.grad-wrapper::before {
    content: "";
    border-radius: 999px;
    background: linear-gradient(125deg, rgb(255, 208, 0), rgb(255, 77, 0), rgb(255, 0, 149));
    filter: blur(15px);
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    transition: 0.3s ease;
    cursor: pointer;
    opacity: 0;
    z-index: -1;
}
.grad-wrapper:hover::before {
    opacity: 1;
}

.privacy-policy, .terms-of-service {
   display: flex;
   justify-content: center;
   align-items: center;
}
.pp-content, .tos-content {
    text-align: left;
    max-width: 900px;
}

.privacy-policy h1, .terms-of-service h1 {
    font-size: 32px;
}
.privacy-policy h2, .terms-of-service h2 {
    margin-top: 50px;
    margin-bottom: 20px;
}
.privacy-policy p, .terms-of-service p {
    font-size: 18px;
    margin-left: 20px;
}

.section-hr {
    background: linear-gradient(135deg, rgb(255, 208, 0), rgb(255, 77, 0),  rgb(255, 0, 149));
    height: 3px;
    border: none;
    margin: 30px 0;
}



@media(max-width: 1000px) {
    .privacy-policy, .terms-of-service {
        margin: 0 50px;
    }
}
@media(max-width: 800px) {
    .header-content {
        gap: 75px;
    }
    .pp-btn, .tos-btn {
        font-size: 22px;
    }
}
@media(max-width: 550px) {
    header {
        padding: 20px;
    }
    .header-content {
        flex-direction: column;
        gap: 25px;
    }
}