/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page Container */
.terms-container {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #fff;
}

/* Title Styles */
.terms-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #222;
}

.terms-subtitle {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: #555;
}

/* Paragraph Styles */
.terms-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

/* Strong Text */
.terms-content strong {
    color: #000;
}
