.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
}

.back-to-home {
    margin-bottom: 20px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: whitesmoke;
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: #0d0d0d6e;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-back:hover {
    border-color: rgb(99, 99, 99);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.terms-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: #0d0d0d6e;
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.terms-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: grayscale(1);
    opacity: 0.8;
}

.terms-header h1 {
    font-size: 42px;
    color: rgb(223, 223, 223);
    margin: 0 0 15px 0;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.terms-section {
    background: #0d0d0d6e;
    border: 1px solid #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.terms-section:hover {
    border-color: rgb(99, 99, 99);
    background: rgba(255, 255, 255, 0.03);
}

.terms-section h2 {
    color: rgb(235, 235, 235);
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
}

.terms-section h2 i {
    font-size: 15px;
    color: rgb(99, 99, 99);
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.terms-section:hover h2 i {
    background: rgba(255, 255, 255, 0.11);
    color: whitesmoke;
}

.terms-section p, .terms-section ul li {
    color: rgb(160, 160, 160);
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

.terms-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.terms-section ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.terms-section ul li:before {
    content: "•";
    color: rgb(99, 99, 99);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .terms-container { padding: 30px 15px; }
    .terms-header h1 { font-size: 32px; }
    .terms-section h2 { font-size: 20px; }
}