.terms-of-service,
.privacy-policy,
.support {
    padding: 120px 0 60px;
    background-color: white;
}

.terms-of-service h1,
.privacy-policy h1,
.support h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2C3E50;
}

.terms-of-service h2,
.privacy-policy h2,
.support h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: #FF6B6B;
}

.terms-of-service h3,
.privacy-policy h3,
.support h3 {
    font-size: 1.4rem;
    margin: 20px 0 10px;
    color: #4ECDC4;
}

.terms-of-service p,
.privacy-policy p,
.support p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2C3E50;
}

.terms-of-service ul,
.privacy-policy ul,
.support ul {
    margin: 15px 0 15px 30px;
}

.terms-of-service li,
.privacy-policy li,
.support li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2C3E50;
}

.back-link {
    margin-top: 40px;
}

.back-link a {
    display: inline-block;
    padding: 12px 25px;
    background-color: #FF6B6B;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-link a:hover {
    background-color: #ff5252;
}

.support-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}

.faq-section {
    flex: 1;
    min-width: 300px;
}

.contact-section {
    flex: 1;
    min-width: 300px;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-method i {
    font-size: 1.5rem;
    color: #FF6B6B;
    margin-top: 5px;
}

@media (max-width: 768px) {

    .terms-of-service h1,
    .privacy-policy h1,
    .support h1 {
        font-size: 2rem;
    }

    .terms-of-service h2,
    .privacy-policy h2,
    .support h2 {
        font-size: 1.5rem;
    }

    .support-content {
        flex-direction: column;
    }
}