body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

.terms-header {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.terms-header h1{
    font-size: 50px;
    font-weight: bold;
}

.terms-header img{
    width: 100px;
    height: 100px;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}

.contents {
    background: #f8f9fa;
    padding: 20px 40px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.contents ol {
    counter-reset: item;
    list-style-type: decimal;
}

.contents a {
    color: #2c3e50;
    text-decoration: none;
}

.contents a:hover {
    text-decoration: underline;
}

section {
    margin-bottom: 40px;
}

.subsection {
    padding-left: 20px;
}

.nested {
    padding-left: 25px;
}

ol {
    padding-left: 20px;
}

ol[type="a"] {
    list-style-type: lower-alpha;
}

.footer-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #666;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .terms-container {
        padding: 20px;
    }
    
    .subsection {
        padding-left: 10px;
    }
    
    .nested {
        padding-left: 15px;
    }
} 