/* Privacy Policy Page */

.privacy-policy-section {
    background: linear-gradient(to right, #07132b, #0d1b3d);
    padding: 120px 20px 80px;
    min-height: 100vh;
    color: #fff;
}

.privacy-policy-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.privacy-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #f7c948;
}

.privacy-content h2,
.privacy-content h3,
.privacy-content h4 {
    color: #f7c948;
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 30px;
}

.privacy-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #e5e5e5;
}

.privacy-content ul,
.privacy-content ol {
    padding-left: 25px;
    margin-bottom: 25px;
}

.privacy-content li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #ddd;
}

.privacy-content a {
    color: #f7c948;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.privacy-content strong {
    color: #fff;
}

@media (max-width: 768px) {

    .privacy-policy-container {
        padding: 30px 20px;
    }

    .privacy-title {
        font-size: 32px;
    }

    .privacy-content h2,
    .privacy-content h3,
    .privacy-content h4 {
        font-size: 24px;
    }

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

/* Terms of Service Page */

.terms-service-section {
    background: linear-gradient(to right, #07132b, #0d1b3d);
    padding: 120px 20px 80px;
    min-height: 100vh;
    color: #fff;
}

.terms-service-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.terms-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #f7c948;
}

.terms-content h2,
.terms-content h3,
.terms-content h4 {
    color: #f7c948;
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 30px;
}

.terms-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #e5e5e5;
}

.terms-content ul,
.terms-content ol {
    padding-left: 25px;
    margin-bottom: 25px;
}

.terms-content li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #ddd;
}

.terms-content a {
    color: #f7c948;
    text-decoration: none;
}

.terms-content a:hover {
    text-decoration: underline;
}

.terms-content strong {
    color: #fff;
}

@media (max-width: 768px) {

    .terms-service-container {
        padding: 30px 20px;
    }

    .terms-title {
        font-size: 32px;
    }

    .terms-content h2,
    .terms-content h3,
    .terms-content h4 {
        font-size: 24px;
    }

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