:root {
    --primary-color: #184476;
    --primary-hover: #12355c;
    --primary-light: rgba(24, 68, 118, 0.1);
    --background-color: #f7f9fc;
    --card-background: #ffffff;
    --text-color: #333;
    --light-text: #666;
    --border-radius: 8px;
    --box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    --transition: all 0.2s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 40px;
    width: auto;
    cursor: pointer;
}

.logo-text {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--primary-color);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--light-text);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background-color: var(--primary-light);
}

.back-button:hover {
    background-color: rgba(24, 68, 118, 0.15);
    color: var(--primary-color);
}

/* Terms Content */
.terms-content {
    background-color: var(--card-background);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.2em;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    gap: 10px;
}

p {
    margin-bottom: 15px;
    color: var(--text-color);
}

ul {
    list-style-type: none;
    margin-left: 20px;
}

li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

footer {
    text-align: center;
    margin-top: 40px;
    color: var(--light-text);
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-content {
        padding: 20px;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.3em;
    }

    header {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links {
        gap: 15px;
    }
}

/* Add styles for nested lists */
.terms-content ul {
    margin-left: 40px;
    margin-bottom: 20px;
}

.terms-content h3 {
    color: var(--text-color);
    margin: 15px 0;
    font-size: 1.2em;
}

.terms-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.terms-content a:hover {
    color: var(--primary-hover);
}

/* Add more spacing between sections */
.terms-content section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.terms-content section:last-child {
    border-bottom: none;
}

/* Improve readability */
.terms-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Make important text stand out */
.terms-content strong {
    color: var(--primary-color);
} 

.logo-image.omezy-brand-wordmark {
    height: 36px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}
