html {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.tos-container {
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    line-height: 1.6;
}

.tos-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #363636;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo-container img {
    height: 70px;
    width: auto;
}

.tos-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin: 0;
}

.effective-date {
    color: #ffffff;
    font-size: 1.2rem;
}

.tos-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.tos-section {
    background-color: #3a3939;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tos-section:hover {
    transform: translateY(-3px);
}

.tos-section h2 {
    color: white;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
}

.icon {
    font-size: 1.2rem;
}

.tos-section p {
    margin-bottom: 0;
    color: white;
    font-size: 1.2rem;
    font-weight: bolder;
}

.back-button {
    display: inline-block;
    padding: 15px 20px;
    background-color: #ff6200; 
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px 0;
    transition: background-color 0.3s;
}
.back-button:hover {
    background-color: #e55a00;
}

@media (max-width: 768px) {
    .tos-container {
        padding: 1rem;
    }
    
    .tos-header h1 {
        font-size: 2rem;
    }
    
    .tos-section {
        padding: 1.2rem;
    }
}