h1 {
            color: #2c3e50;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
        }
        h2 {
            color: #2980b9;
            margin-top: 25px;
        }
        .header-info {
            background-color: #f8f9fa;
            padding: 15px;
            border-left: 4px solid #3498db;
            margin-bottom: 20px;
        }
        .eula-section {
            margin-bottom: 20px;
        }
        .highlight {
            background-color: #fffde7;
            padding: 2px 4px;
            font-weight: bold;
        }
        .eula-footer {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            font-size: 0.9em;
            color: #7f8c8d;
        }
        ul {
            padding-left: 20px;
        }
        li {
            margin-bottom: 8px;
        }

.content {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.content-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.content-card h1 {
	font-size: 1.5em;
	text-align: center;
	padding-bottom: 20px;
}

.content-content {
    margin-bottom: 20px;
    color: var(--dark);
}

.content-content p {
    margin-bottom: 10px;
}