.terms-page {
    background: linear-gradient(to bottom, #F5CDD3 0%, #F5CDD3 55%, #e79aab 85%, #e79aab 100%);
    padding: 200px 0 80px;
    min-height: 100vh;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(170, 78, 101, 0.1);
    position: relative;
}

.back-button {
    display: inline-block;
    background: none;
    border: none;
    font-family: "Coolvetica", sans-serif;
    font-size: 16px;
    color: #AA4E65;
    cursor: pointer;
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.back-button:hover {
    color: #8a3e52;
    transform: translateX(-3px);
}

.terms-container h1 {
    font-family: "Czizh", cursive;
    font-size: 42px;
    color: #AA4E65;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F5CDD3;
}

.terms-content section {
    margin-bottom: 30px;
}

.terms-content h2 {
    font-family: "Czizh", cursive;
    font-size: 24px;
    color: #AA4E65;
    margin-bottom: 15px;
}

.terms-content p {
    font-family: "Coolvetica", sans-serif;
    font-size: 16px;
    color: #5B2B37;
    line-height: 1.6;
    margin-bottom: 12px;
}

.terms-content ul {
    margin: 10px 0 15px 30px;
}

.terms-content li {
    font-family: "Coolvetica", sans-serif;
    font-size: 15px;
    color: #5B2B37;
    line-height: 1.5;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .terms-page {
        padding: 160px 0 50px;
    }
    
    .terms-container {
        padding: 25px;
        margin: 0 15px;
    }
    
    .terms-container h1 {
        font-size: 32px;
    }
    
    .terms-content h2 {
        font-size: 20px;
    }
    
    .terms-content p,
    .terms-content li {
        font-size: 14px;
    }
    
    .back-button {
        font-size: 14px;
    }
}