/* terms.css - Specific styles for the Terms and Conditions page */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

:root {
    --background-color: #ffffff;
    --text-color: #333333;
    --accent-color: rgba(62, 114, 255, 1);
    --container-bg-color: #f9f9f9;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

.dark-mode {
    --background-color: #121212;
    --text-color: #e0e0e0;
    --container-bg-color: #1e1e1e;
    --shadow-color: rgba(0, 0, 0, 0.5);
}

.language-selector {
    display: flex;
    justify-content: flex-end;
    padding: 15px;
    margin-top: 70px;
}

.language-selector select {
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid var(--shadow-color);
    background-color: var(--container-bg-color);
    color: var(--text-color);
}

.tc-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: var(--container-bg-color);
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.tc-container h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--accent-color);
}

.tc-container h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}

.tc-container h3 {
    font-size: 1.25rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.tc-container p {
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.tc-container ul {
    margin-left: 20px;
    margin-bottom: 15px;
    list-style-type: disc;
}

.tc-container ul li {
    margin-bottom: 8px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .tc-container {
        padding: 20px;
        margin: 20px;
    }
}

#logo {
    display: block;               /* Makes it behave like a block element */
    margin: 40px auto 20px auto;  /* Centers it horizontally, adds top and bottom margin */
    max-width: 150px;             /* Controls how wide the logo can get */
    height: auto;                 /* Maintains aspect ratio */
}